<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* =============================== HEADER =============================== */

header { background-color: #fff; width: 100%; margin: 0 auto; }
header.header-home {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-radius: 80px;
    padding: 0 40px;
    width: 80%;
}
header .logo img { display: block; margin: 1.75rem auto; width: 100%; max-width: 200px; height: auto; }

header .logo .logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/1;
    background-color: var(--light);
    color: var(--primary-color);
    width: 250px;
    border-radius: 4px;
    font-weight: bold;
    margin: 1.75rem auto;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

/* TOPO */
header .topo { background-color: var(--primary-color); padding: 8px 0; font-size: 13px; color: #fff; }
header .topo :is(span, a) { font: 13px var(--primary-font); color: #fff; transition: .3s; }
header .topo a:hover { opacity: 0.75;}


/* MENU */
header #menu &gt; ul { display: flex; align-items: center; justify-content: center; height: 100%; gap: 4px;}
header #menu &gt; ul &gt; li { margin: 0; }
header #menu &gt; ul &gt; li &gt; a {
  position: relative;
  color: var(--grey);
  padding: 11px 15px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Barrinha inicial oculta */
header #menu &gt; ul &gt; li &gt; a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2.8px;
  width: 100%;
  background: linear-gradient(221deg, #049539 0%, #012F12 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* Efeito ao passar o mouse ou ativar */
header #menu &gt; ul &gt; li:hover &gt; a::after,
header #menu &gt; ul &gt; li:focus-within &gt; a::after,
header #menu &gt; ul &gt; li &gt; a.active-menu-topo::after {
  transform: scaleX(1);
}

header #menu &gt; ul &gt; li.dropdown [class*='sub-menu'] { background-color: var(--primary-color); }
header #menu &gt; ul &gt; li.dropdown [class*='sub-menu'] &gt; li:hover &gt; a,
header #menu &gt; ul &gt; li.dropdown [class*='sub-menu'] &gt; li &gt; a.active-menu-topo { background-color: #fff; color: var(--primary-color); }

/* MENU DROPDOWN ARROWS */
header #menu&gt;ul&gt;li.dropdown:not([data-icon-menu])&gt;a::after{content:"\f107";font-family:FontAwesome;margin-left:4px;font-size:12px}

/* ASIDE */
.aside .aside__btn, .aside .aside__menu h2, .aside .aside__contato h2 { font-size: 14px; background-color: var(--primary-color); padding: 10px; display: block; transition: .3s; color: #fff; }
.aside .aside__btn { color: #fff; text-align: center; border-radius: 3px; }
.aside .aside__btn:hover { background-color: var(--dark); }
.aside .aside__menu h2 a { color: #fff; }
.aside .aside__menu nav ul li { border-left: 2px solid var(--primary-color); margin: 10px 0; padding: 5px; transition: .2s; }
.aside .aside__menu nav ul li a { color: var(--dark); font-size: 12px; border-left: 0; padding: 0; transition: .3s; }
.aside .aside__menu nav ul li:hover { border-left-color: var(--dark); background-color: #f0f0f0; }
.aside .aside__menu nav ul li a.active-menu-aside { color: var(--primary-color); font-weight: bold; }
.aside .aside__contato h2 { text-align: center; }
.aside .aside__contato a { color: var(--dark); text-align: center; display: block; margin: 10px; transition: all .2s ease; }
.aside .aside__contato a:hover { color: #5492c3; }
.aside .fb-page { display: block; margin-bottom: 25px; }


/* =============================== FOOTER =============================== */
footer {background-color: #f1f1f1; padding: 25px 0; border-top: solid 4px var(--primary-color); }
footer h3 {margin-top: 0; font-size: 18px; color: var(--dark); }
footer h3:after { content: ''; display: block; margin: 5px 0; height: 2.5px; background: var(--primary-color); width: 10%;}
footer .footer__menu li a { display: block; padding: 5px 0; font-size: 14px; color: var(--dark); transition: .3s;}
footer .footer__menu li a i { font-size: 10px; }
footer .footer__menu li a:hover { color: var(--primary-color); }
footer .address :is(span, a):not(.btn) { color: var(--dark); font-size: 14px; line-height: 25px; transition: .3s;}
footer .address a:not(.btn):hover { color: var(--primary-color); }
footer .social { gap: 10px; margin-top: 15px; }
footer .social__icons { font-size: 28px; opacity: 0.75; color: var(--secondary-color); padding: 8px; width: 45px; height: 45px; border-radius: 50%; border: solid 2px var(--secondary-color); display: flex; justify-content: center; align-items: center; }
footer .social__icons:hover { opacity: 1; }
/* MEDIUM DEVICE */
@media only screen and (max-width:768px) {
    footer img { display: block; margin: 0 auto; }
}
/* SMALL DEVICE */
@media only screen and (max-width:576px) {
    footer h3:after { margin-left: auto; margin-right: auto; }
    footer .address .btn { display: inline-block; margin: 1rem auto; width: auto; }
    footer .social { justify-content: center; }
}
 
/* DESTAQUES */

.destaques-mpi {
    margin: 32px 0;
}

.destaques-mpi__title {	margin: 0 0 30px 0;	color: var(--dark); display: flex; justify-content: center; align-items: center; flex-direction: column; }
.destaques-mpi__title::after{
    content: '';
    width: 90px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px 0;
}
.destaques-mpi__title span { color: var(--dark); }

/* FIM DESTAQUES */

/* CLIENTES */

.clientes {
    padding: 32px 0;
}

.clientes__title { margin: 0 0 30px 0; }
.clientes__item { display: flex !important; justify-content: center; align-items: center; width: 100%; aspect-ratio: 1/1; padding: 8px; margin: 0 10px; background-color: #fff;}

.clientes__carousel {
    padding: 0 16px;
}

.clientes__image {
	max-width: 100%;
	max-height: 100%;
}

/* FIM CLIENTES */

/* ==================== Cards mod-21 ==================== */

.card.card--mod-21 {position: relative;border-radius: .25rem;overflow: hidden}
.card.card--mod-21 .card__image {display: block;width: 100%;aspect-ratio: 4/4;object-fit: cover}
.card.card--mod-21 .card__title {margin: 0;padding: .75rem;display: flex;align-items: center;justify-content: center;position: absolute;left: 0;bottom: 0;width: 100%;height: calc((1.125rem * 3)*1.3);font-size: 1.125rem;text-align: center;color: #fff;background-color: var(--primary-color);line-height: 1.3;}
.card.card--mod-21 .card__title::after {content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;margin: 0;border: 2px solid #fffC;opacity: 0;border-radius: .25rem;transition: all .3s ease-out;transition-delay: 0s}
.card.card--mod-21:focus .card__title,
.card.card--mod-21:hover .card__title {height: 100%;}
.card.card--mod-21:hover .card__title::after {width: calc(100% - 2rem);height: calc(100% - 2rem);margin: 1rem;opacity: 1;transition-delay: .2s}

/* ================== FIM Cards mod-21 ================== */
.bg-body{
    background-color: #fafafa;
}
.space-y{
    margin: 80px 0;
}
/* ==================== Galeria ==================== */

.thumb-position {
    position: relative;
}

.thumb-1 {
    width:100%;
}

.thumb-1__overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(0.8px);
    opacity: 0;
    transition: 0.35s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;

}
.thumb-position:hover .thumb-1__overlay{
    opacity:1;
    visibility: visible;
}
.thumb-1__image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.thumb-1:hover {
    flex-grow: 20;
}
@media screen and (min-width: 992px) {
    .galeria .grid-col-4 .thumb-position:nth-child(8n+1),
    .galeria .grid-col-4 .thumb-position:nth-child(8n+3),
    .galeria .grid-col-4 .thumb-position:nth-child(8n+6),
    .galeria .grid-col-4 .thumb-position:nth-child(8n+8) {
        height: 200px;
    }
    .galeria .grid-col-4 .thumb-position:nth-child(8n+2),
    .galeria .grid-col-4 .thumb-position:nth-child(8n+4),
    .galeria .grid-col-4 .thumb-position:nth-child(8n+5),
    .galeria .grid-col-4 .thumb-position:nth-child(8n+7) {
        height: 400px;
        margin-top: -100px;
    }
    .galeria .grid-col-4 .thumb-position:nth-child(2n) {
        transform: translateY(100px);
    }
}
/* ================== FIM Galeria ================== */
.card-img{
    background-color: #F6F6F6;
    border-radius: 20px;
    padding: 10px;
    object-fit: contain;
    height: 200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.line-title{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.line-title::before{
    content: "";
    display: block;
    background-color: var(--primary-color);
    width: 4px;
    height: 70px;
    margin: 0 10px 0 0;
}
.line-content{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.line-content::before{
    content: '';
    display: block;
    width: 45px;
    height: 400px;
    border-radius: 37px;
    margin: 0 20px 0 0;
    background: var(--secundary-gradient, linear-gradient(221deg, #00579F 0%, #001F39 100%));
}
.line-content-mod::before{
    width: 15px;
    height: 470px;
}
@media screen and (max-width: 576px) {
    .line-content::before, .line-content-mod::before{
        display: none;
    }
}
.btn-servicos{
    padding: 12px 36px;
    text-transform: uppercase;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    transition: all .3s ease-in;
}
.btn-servicos:hover{
    background-color: var(--secondary-color);
}
.cta{
    padding: 90px 0;
    background: var(--background);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.title-cta{
    color: #FAFAFA;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 89.7%; /* 28.704px */
    letter-spacing: 8.32px;
    text-transform: uppercase;
}
.sub-title-cta{
    color:#FAFAFA;
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: 99%; /* 39.6px */
    text-transform: uppercase;
    text-align: center;
    display: block;
}
.sub-title-home{
    color: #888;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 20px */
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-top: 30px;
}
.line-home{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}
.line-home::after{
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px 0;
}
.carousel-clientes__item{
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-11{
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);  
    padding: 16px 16px 24px 16px;
    background-color: #fafafa;
    transition: all 0.4s ease;
}
.card-11__image{
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.card-11, .card-11__image{
    border-radius: 15px;
}
.card-11__title{
    font-size: 1.4375rem;
    color:  #010101;
    margin-top: 16px;
    text-align: center;
}
.card-11__text{
    font-size: 16px;
    color:  #010101;
}
.btn-right{
    text-align: right;
}
.card-11__btn{
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 11px 16px;
    background-color: #000;
    transition: all 0.4s ease;
    border-radius: 10px;
    display: flex;
    width: 100%;
    justify-content: center;
    border-radius: 30px;
}
.card-11__btn:hover{
    color: var(--light, #fff);
}
.card-11:hover{
    background-color: #e7e7e7;
}
.card-11:hover .card-11__btn{
    background-color: var(--primary-color, #26306D);
    color: var(--light);
}
.card-11:hover .card-11__title{
    color: var(--primary-color, #26306D);
}
.sub-title-sobre{
    color: #888;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 24px */
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}
.btn-mod{
    border-radius: 40px;
    text-transform: uppercase;
    font-weight: 600;
}
.btn-mod-banner{
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    background: linear-gradient(221deg, #049539 0%, #012F12 100%);
    border: none;
    transition: all .3s ease-in;
}
.btn-mod-banner:hover{
    border: none;
    background: var(--secondary-color);
}
.mod-position{
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;   
}</pre></body></html>