
/* 
    intro 
*/

section.intro {
    background: var(--roxo);
}

section.intro .row {
    align-items: center;
    min-height: 480px;
}

section.intro h2 {
    font-size: 90px;
    color: #fff;
    line-height: 90px;
    margin-bottom: 30px;
    font-family: var(--font-secundaria);
    font-weight: 200;
}

section.intro h2 small {
    display: block;
    font-size: 48px;
    line-height: 1;
}

section.intro h2 strong {
    display: block;
    font-weight: bold;
    text-transform: none;
    font-size: 125px;
}

section.intro .left p {
    font-size: 24px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 30px;
}

section.intro img {
    margin-bottom: -40px;
}

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 a {
    background: var(--verde);
    color: var(--roxo);
    border: 2px transparent solid;
    transition: all .5s;
}

section.intro a:hover {
    background: transparent;
    border-color: var(--verde);
}

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


/* 
    Separador 
*/
div.separador {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

div.separador span {
    display: block;
    width: 5px;
    height: 30px;
    border-radius: 40px;
    background: var(--roxo);
}

div.separador span:nth-child(2) {
   height: 20px;
}


/* 
    Seguros
*/
section.seguros {
    padding: 120px 0;
}

section.seguros h2 {
    font-family: var(--font-secundaria);
    font-size: 48px;
    color: var(--roxo);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 200;
}

section.seguros .seguros__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
}

section.seguros .seguros__nav a {
    background: var(--roxo);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    color: #fff;
    border-radius: 40px;
    padding: 15px 40px;
    display: block;
    transition: all .4s;
    border: 2px transparent solid;
}

section.seguros .seguros__nav a.contabil {
    color: #004b5e;
}

section.seguros .seguros__nav a:hover {
    background: var(--verde) !important;
    color: var(--roxo);
}

section.seguros .seguros__nav a.active {
    background: #fff !important;
    color: var(--roxo);
    border-color: var(--roxo);
    position: relative;
}

section.seguros .seguros__nav a.active:after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--roxo);
    border-bottom: 2px solid var(--roxo);
    z-index: 99;
    background: #fff;
}


section.seguros .seguros__list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

section.seguros .seguros__item {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    border-radius: 80px;
    overflow: hidden;
    background: #f4f4f4;
}

section.seguros .seguros__item img {
    display: block;
    width: 100%;
    object-fit: cover;
    height: auto;
    aspect-ratio: 16/9;
}

section.seguros .seguros__item h4 {
    text-align: center;
    padding: 10px;
    background: var(--roxo);
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

section.seguros .seguros__item h4.contabil {
    color: #004b5e;
}

section.seguros .seguros__item h3 {
    font-family: var(--font-secundaria);
    font-size: 30px;
    color: var(--roxo);
    font-weight: bold;
}

section.seguros .seguros__item h3 small {
    display: block;
    font-size: 18px;
    line-height: 1.5;
    font-weight: normal;
}

section.seguros .seguros__item  p {
    margin: 20px 0;
    font-size: 16px;
    color: #000;
    line-height: 1.5;
}

section.seguros .seguros__item .content {
    padding: 30px;
    text-align: center;
}

section.seguros .seguros__item a {
    padding: 15px 30px;
    text-transform: uppercase;
    color: var(--roxo);
    font-weight: bold;
    background: var(--verde);
    display: table;
    border-radius: 40px;
    margin: auto;
    font-size: 16px;
}


/* 
    Descrição do Serviço
*/
section.description {
    padding: 120px 0;
}

section.description h2 {
    font-family: var(--font-secundaria);
    font-size: 56px;
    color: var(--roxo);
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
}

section.description h2 small {
    display: block;
    font-size: 24px;
    font-weight: normal;
}

section.description h3 {
    font-family: var(--font-secundaria);
    font-size: 48px;
    color: var(--roxo);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 200;
}

section.description .separador {
    margin-bottom: 60px;
}

section.description .desc {
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
}


/* Duvidas */
section.duvidas {
    padding: 90px 0;
}

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

section.duvidas h2 {
    font-family: var(--font-secundaria);
    font-size: 48px;
    color: var(--roxo);
    margin-bottom: 30px;
    font-weight: 200;
}

section.duvidas .separador {
    margin: 30px 0;
    width: max-content;
}

section.duvidas .intro {
    font-size: 20px;
    color: var(--roxo);
    line-height: 1.5;
    margin-bottom: 30px;
}

section.duvidas  .duvidas__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

section.duvidas .duvidas__item {
    background: #f4f4f4;
    line-height: 1.5;
    border-radius: 40px;
    padding: 30px 40px;
    cursor: pointer;
}

section.duvidas .duvidas__item h4 {
    font-size: 20px;
    color: var(--roxo);
    position: relative;
    padding-right: 50px;
}

section.duvidas .duvidas__item h4::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 4px;
    border-radius: 4px;
    background: var(--verde);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

section.duvidas .duvidas__item h4::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 4px;
    border-radius: 4px;
    background: var(--verde);
    right: 0;
    top: calc(50% - 2px);
    transform: rotate(90deg);
}

section.duvidas .duvidas__item .content {
    line-height: 1.5;
    font-size: 16px;
    margin-top: 15px;
}


/* 
    Vantagens
*/
section.vantagens {
    background: var(--roxo);
    padding: 90px 0;
}

section.vantagens h2 {
    font-family: var(--font-secundaria);
    font-size: 48px;
    color: var(--verde);
    text-align: center;
    margin-bottom: 30px;
    font-weight: 200;
}

section.vantagens .separador span {
    background: var(--verde);
}


section.vantagens .vantagens__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

section.vantagens .vantagens__items .item {
    background: #fff;
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    transition: all .4s;
}

section.vantagens .vantagens__items h3 {
    font-weight: bold;
    font-size: 24px;
    color: var(--roxo);
    margin: 15px 0;
}

section.vantagens .vantagens__items p {
    font-size: 16px;
    line-height: 1.5;
}


/* 
    Formulario 
*/
section.formulario {
    padding: 90px 0;
    background: #f4f4f4;
}

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

section.formulario h2 {
    font-family: var(--font-secundaria);
    font-size: 56px;
    color: var(--roxo);
    margin-bottom: 10px;
    font-weight: bold;
}

section.formulario h3 {
    font-family: var(--font-secundaria);
    font-size: 42px;
    color: var(--roxo);
    font-weight: 200;
}

section.formulario form br {
    display: none;
}

section.formulario .wpcf7-form-control-wrap {
    margin-bottom: 15px;
    display: block;
}

section.formulario input[type="text"],
section.formulario input[type="email"],
section.formulario input[type="tel"],
section.formulario input[type="number"],
section.formulario textarea {
    font-family: var(--font);
    width: 100%;
    padding: 20px 30px;
    background: #fff;
    border: 2px transparent solid;
    border-radius: 40px;
}

section.formulario .wpcf7-not-valid {
    border: 2px solid red !important;
}

section.formulario .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 10px;
}

section.formulario input[type="checkbox"] {
    width: 30px;
    height: 30px;
}

section.formulario span.wpcf7-list-item-label {
    font-size: 12px;
    color: #666;
    line-height: 14px;
}

section.formulario span.wpcf7-list-item-label a {
    color: var(--roxo);
    font-weight: 600;
}

section.formulario .cta__primary {
    padding: 20px 40px;
    margin: auto;
    margin-top: 30px;
}


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