/*-----------------------------------------------------------------------------------
  1.  Base
  2.  Header
  3.  Content
    3a.  About Page
    3b.  Services Page
    3c.  Blog Page
    3d.  Contact Page
  4.  Footer
-----------------------------------------------------------------------------------*/


/*-----------------------------------------------------------------------------------*/
/*  1. Base
/*-----------------------------------------------------------------------------------*/

html,
body {
    overflow-x: hidden;
}

body {
    word-wrap: break-word;
    -ms-word-wrap: break-word;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

blockquote {
    margin: 1em 0;
    border-left: 10px solid #0F2B4D;
    padding-left: 12px;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.1em;
}

table th {
    background: #ddd;
    font-weight: bold;
}

table td,
table th {
    padding: 8px;
    border: 1px solid #bbb;
    text-align: left;
}

dt {
    font-weight: bold;
}

pre {
    white-space: pre;
    word-wrap: normal;
    overflow-x: scroll;
    line-height: 1.3;
    margin: 1em 0;
}

figure {
    max-width: 100%;
    height: auto;
}

*::-moz-selection {
    background: #000;
    color: #fff;
}

*::selection {
    background: #000;
    color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

label {
    display: block;
    color: #333333;
    font-size: 15px;
    text-transform: uppercase;
}

input[type="text"] {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    border: none;
}

textarea {
    width: 100%;
    padding: 0 15px;
    border: none;
}

input[type="email"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border: none;
    outline: 0;
    -webkit-box-shadow: 0px 5px 30px 0px rgba(50, 50, 50, 0.1);
    -moz-box-shadow: 0px 5px 30px 0px rgba(50, 50, 50, 0.1);
    box-shadow: 0px 5px 30px 0px rgba(50, 50, 50, 0.1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    margin-top: 0;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 12px;
}

p {
    color: #333333;
}

a {
    color: #0F2B4D;
    text-decoration: none;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

a:hover,
a:focus {
    color: #0B1E3C;
    text-decoration: none;
    outline: 0;
}

input::-moz-focus-inner {
    border: 0;
}

a img {
    border: none;
}

img {
    max-width: 100%;
}

.nomargin-bottom {
    margin-bottom: 0 !important;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999;
}

#status {
    height: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url(../img/status.gif);
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
}

a.button-normal {
    background-color: #0F2B4D;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 12px 32px;
    margin-top: 20px;
    display: inline-block;
    border-radius: 30px;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

a.button-normal:hover {
    background-color: #0B1E3C;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 8px 18px rgba(15, 43, 77, 0.30);
    box-shadow: 0 8px 18px rgba(15, 43, 77, 0.30);
}

a.button-normal.white {
    background-color: #ffffff;
    color: #333333;
}

a.button-normal.white:hover {
    background-color: #0F2B4D;
    color: #ffffff;
}

a.button-normal.with-icon {
    position: relative;
    padding: 10px 67px 10px 30px;
}

a.button-normal.with-icon .icon {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    line-height: 48px;
    font-size: 20px;
    padding: 0 6px 0 10px;
    background-color: #0B1E3C;
}

a.button-normal.with-icon-left {
    position: relative;
    padding: 10px 30px 10px 67px;
}

a.button-normal.with-icon-left .icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    line-height: 48px;
    font-size: 20px;
    padding: 0 6px 0 10px;
    background-color: #0B1E3C;
}


/*-----------------------------------------------------------------------------------*/
/*  2. Header
/*-----------------------------------------------------------------------------------*/

#header {
    position: relative;
    z-index: 1000;
}


/* Top Header */

.top-header {
    background: rgba(255, 255, 255, 0.78);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    backdrop-filter: blur(18px) saturate(180%);
    padding: 25px 30px;
    margin-top: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    -webkit-box-shadow:
        0 8px 30px rgba(15, 43, 77, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    box-shadow:
        0 8px 30px rgba(15, 43, 77, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.top-header .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.top-header .logo img {
    margin: 0;
    display: block;
}

.top-header .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.top-header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.top-header ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 14px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
}

.top-header ul li:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.top-header ul li.last {
    margin-right: 0;
}

.top-header ul li i {
    margin-right: 12px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    background: -webkit-linear-gradient(135deg, #0F2B4D 0%, #1A4470 100%);
    background: linear-gradient(135deg, #0F2B4D 0%, #1A4470 100%);
    color: #ffffff;
    font-size: 18px;
    border-radius: 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-shadow: 0 4px 10px rgba(15, 43, 77, 0.18);
    box-shadow: 0 4px 10px rgba(15, 43, 77, 0.18);
    -webkit-transition: -webkit-box-shadow 0.25s ease;
    transition: box-shadow 0.25s ease;
}

.top-header ul li:hover i {
    -webkit-box-shadow: 0 6px 14px rgba(15, 43, 77, 0.28);
    box-shadow: 0 6px 14px rgba(15, 43, 77, 0.28);
}

.top-header ul li p {
    margin: 0;
    line-height: 1.3;
}

.top-header .social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #e8e8e8;
    height: 44px;
}

.top-header .social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background-color: #ffffff;
    color: #0F2B4D;
    border: 1.5px solid #e5e9ef;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.top-header .social-icons a + a {
    margin-left: 8px;
}

.top-header .social-icons a:hover {
    background-color: #0F2B4D;
    border-color: #0F2B4D;
    color: #ffffff;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 6px 14px rgba(15, 43, 77, 0.25);
    box-shadow: 0 6px 14px rgba(15, 43, 77, 0.25);
}

.top-header ul li p span {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0F2B4D;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.top-header ul li p span.heading {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    color: #8a94a3;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}


/* Main Menu */

.main-menu {
    position: relative;
    height: 50px;
    background: #0F2B4D;
    width: auto;
    border-radius: 12px;
    margin-top: 15px;
}

.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.main-menu > ul {
    position: relative;
    display: inline-block;
    z-index: 500;
    float: left;
    padding: 0 15px;
}

.main-menu:after,
.main-menu > ul:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.main-menu.align-right > ul > li {
    float: right;
}

.main-menu.align-center ul {
    text-align: center;
}

.main-menu.align-center ul ul {
    text-align: left;
}

.main-menu > ul > li {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 0;
}

.main-menu > ul > #menu-button {
    display: none;
}

.main-menu ul li a {
    display: block;
    text-decoration: none;
}

.main-menu > ul > li > a {
    font-size: 15px;
    font-weight: 700;
    padding: 18px 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    -webkit-transition: opacity 0.25s ease-out;
    -moz-transition: opacity 0.25s ease-out;
    -ms-transition: opacity 0.25s ease-out;
    -o-transition: opacity 0.25s ease-out;
    transition: opacity 0.25s ease-out;
}

.main-menu > ul > li:hover > a {
    opacity: 0.7;
}

.main-menu li.has-sub::after {
    display: block;
    content: "";
    position: absolute;
    width: 0;
    height: 0;
}

.main-menu ul ul {
    position: absolute;
    left: -9999px;
    top: 70px;
    opacity: 0;
    -webkit-transition: opacity .3s ease, top .25s ease;
    -moz-transition: opacity .3s ease, top .25s ease;
    -ms-transition: opacity .3s ease, top .25s ease;
    -o-transition: opacity .3s ease, top .25s ease;
    transition: opacity .3s ease, top .25s ease;
    z-index: 1000;
}

.main-menu ul ul ul {
    top: 37px;
    padding-left: 5px;
}

.main-menu ul ul li {
    position: relative;
}

.main-menu > ul > li:hover > ul {
    left: auto;
    top: 50px;
    opacity: 1;
}

.main-menu.align-right > ul > li:hover > ul {
    left: auto;
    right: 0;
    opacity: 1;
}

.main-menu ul ul li:hover > ul {
    left: 170px;
    top: 0;
    opacity: 1;
}

.main-menu.align-right ul ul li:hover > ul {
    left: auto;
    right: 170px;
    top: 0;
    opacity: 1;
    padding-right: 5px;
}

.main-menu ul ul li a {
    width: 160px;
    border-bottom: 1px solid #0B1E3C;
    padding: 15px 15px;
    font-size: 14px;
    color: #ffffff;
    background: #0F2B4D;
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -ms-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease;
}

.main-menu.align-right ul ul li a {
    text-align: right;
}

.main-menu ul ul li:hover > a {
    background: #0B1E3C;
}

.main-menu ul ul li:last-child > a,
.main-menu ul ul li.last > a {
    border-bottom: 0;
}

/* Mobile Menu*/

#slide-buttons {
    background: -webkit-linear-gradient(135deg, #0F2B4D 0%, #1A4470 100%);
    background: linear-gradient(135deg, #0F2B4D 0%, #1A4470 100%);
    display: none;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    color: #ffffff;
    font-size: 20px;
    line-height: 46px;
    padding: 0;
    cursor: pointer;
    -webkit-box-shadow: 0 6px 16px rgba(15, 43, 77, 0.22);
    box-shadow: 0 6px 16px rgba(15, 43, 77, 0.22);
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

#slide-buttons:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 10px 22px rgba(15, 43, 77, 0.35);
    box-shadow: 0 10px 22px rgba(15, 43, 77, 0.35);
    background: -webkit-linear-gradient(135deg, #0B1E3C 0%, #0F2B4D 100%);
    background: linear-gradient(135deg, #0B1E3C 0%, #0F2B4D 100%);
}

#slide-buttons:focus {
    outline: none;
    -webkit-box-shadow: 0 0 0 3px rgba(15, 43, 77, 0.25), 0 6px 16px rgba(15, 43, 77, 0.22);
    box-shadow: 0 0 0 3px rgba(15, 43, 77, 0.25), 0 6px 16px rgba(15, 43, 77, 0.22);
}

.c-menu__close:hover {
    background-color: rgba(255, 255, 255, 0.20);
    opacity: 1;
}

/* Slide buttons container - alinha o hamburger no canto direito quando ativo */
.top-header .slide-buttons {
    margin-left: auto;
    -ms-flex-item-align: center;
    align-self: center;
}

.c-menu {
    position: fixed;
    z-index: 3000;
    background-color: #0F2B4D;
    background-image:
        -webkit-radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        -webkit-linear-gradient(135deg, #0F2B4D 0%, #0a1d36 60%, #061829 100%);
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(135deg, #0F2B4D 0%, #0a1d36 60%, #061829 100%);
    background-size: 22px 22px, 100% 100%;
    background-repeat: repeat, no-repeat;
    background-position: center center;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

.c-menu--slide-right {
    width: 100%;
    height: 100%;
}

@media all and (min-width: 320px) {
    .c-menu--slide-right {
        width: 320px;
        max-width: 88vw;
    }
}
.c-menu .search-input {
    position: relative;
    padding: 24px 24px 18px 24px;
    margin-top: 36px;
}

.c-menu .search-input input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #ffffff;
    font-size: 13px;
    padding: 0 40px 0 16px;
    height: 42px;
    width: 100%;
    -webkit-transition: border-color 0.2s, background-color 0.2s;
    transition: border-color 0.2s, background-color 0.2s;
}

.c-menu .search-input input:focus {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    outline: none;
}

.c-menu .search-input input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.c-menu .search-input input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.c-menu .search-input button {
    position: absolute;
    right: 36px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 9px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
}

ul.slide-menu-items {
    padding: 0 12px;
    margin-top: 8px;
    margin-bottom: 0;
    text-align: left;
    list-style: none;
}

ul.slide-menu-items > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

ul.slide-menu-items > li:last-child {
    border-bottom: none;
}

ul.slide-menu-items li  {
    cursor: pointer;
}

ul.slide-menu-items li a {
    text-transform: uppercase;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    display: block;
    padding: 14px 12px;
    -webkit-transition: color 0.2s, background-color 0.2s;
    transition: color 0.2s, background-color 0.2s;
    text-decoration: none;
}

ul.slide-menu-items li ul {
    padding: 0 0 8px 12px;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

ul.slide-menu-items li ul li {
    border-bottom: none;
}

ul.slide-menu-items li ul li a {
    font-size: 11.5px;
    font-weight: 500;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.78);
    text-transform: none;
    letter-spacing: 0.04em;
}

ul.slide-menu-items li.active > a,
ul.slide-menu-items li a:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border-radius: 6px;
}

ul.slide-menu-items li.has-sub {
    position: relative;
}

ul.slide-menu-items li.has-sub:after {
    font-family: "logistics" !important;
    content: "\70";
    position: absolute;
    right: 15px;
    top: 2px;
    color: #ffffff;
    font-size: 20px;
}

ul.slide-menu-items li.has-sub.open:after {
    font-family: "logistics" !important;
    content: "\6f";
    position: absolute;
    right: 15px;
    top: 2px;
    color: #ffffff;
    font-size: 20px;
}

ul.slide-menu-items li.has-sub > ul {
    display: none;
}

.c-menu--slide-right .c-menu__close {
    padding: 5px;
}

.c-menu--slide-right {
    top: 0;
    right: 0;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

@media all and (min-width: 320px) {
    .c-menu--slide-right {
        -webkit-transform: translateX(110%);
        -ms-transform: translateX(110%);
        transform: translateX(110%);
    }
}

.c-menu--slide-right.is-active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.c-menu__close {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    font-size: 18px;
    line-height: 36px;
    width: 36px;
    height: 36px;
    border: none;
    position: absolute !important;
    top: 14px;
    right: 14px;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
    box-shadow: none;
    border-radius: 0;
    cursor: pointer;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.c-menu__close:focus {
    outline: none;
}

.slide-overlay {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 0;
    height: 0;
    background-color: #000;
    opacity: 0;
    -webkit-transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
    transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
}

.slide-overlay.is-active {
    width: 100%;
    height: 100%;
    opacity: 0.7;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.c-menu .info {
    position: relative;
    z-index: 5000;
    padding: 28px 24px 24px;
    margin-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.c-menu .info ul {
    padding: 0;
    margin: 0;
    border: none;
    list-style: none;
}

.c-menu .info ul li {
    display: block;
    margin-bottom: 16px;
    overflow: visible;
    padding: 0;
}

.c-menu .info ul li.last,
.c-menu .info ul li:last-child {
    margin-bottom: 0;
}

.c-menu .info ul li p {
    margin: 0;
    line-height: 1.45;
}

.c-menu .info ul li p span {
    display: block;
    width: 100%;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
}

.c-menu .info ul li p span.heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.4;
    margin-bottom: 3px;
}

/* Search Bar */

.main-menu .right-section {
    position: relative;
    float: right;
}

.right-section .search {
    float: left;
    height: 50px;
}

.right-section .search i {
    cursor: pointer;
    line-height: 50px;
    color: #ffffff;
    padding: 0 20px;
    border-left: 1px solid #0B1E3C;
}

.right-section .search-input {
    position: absolute;
    bottom: -40px;
    width: 100%;
}

.right-section .search-input input {
    border: none;
    opacity: 0;
    visibility: hidden;
    height: 40px;
    width: 100%;
    padding: 0 20px;
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -ms-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease;
}

.right-section .search-input input.show {
    opacity: 1;
    visibility: visible;
}

.right-section .quote-link {
    float: right;
}

.right-section .quote-link a {
    height: 50px;
    color: #ffffff;
    padding: 12px 30px;
    display: inline-block;
    background-color: #0B1E3C;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 0 12px 12px 0;
}

/* Header Style 2 */
.header-style-2 .top-header {
    margin-top: 0;
}
.header-style-2 .navigation {
    background-color: #0F2B4D;
    height: 50px;
}
.header-style-2 .main-menu > ul {
    padding: 0;
}
.header-style-2 .main-menu > ul > li:first-child > a {
    padding-left: 0;
}


/*-----------------------------------------------------------------------------------*/
/*  3. Content
/*-----------------------------------------------------------------------------------*/

.wrapper {
    padding: 100px 0;
}

.bg-color {
    background-color: #f6f6f6;
}

.section-title .section-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #0F2B4D;
    background-color: rgba(15, 43, 77, 0.08);
    padding: 7px 18px;
    border-radius: 20px;
    margin-bottom: 22px;
}

.section-title .section-subtitle {
    font-family: 'Lato', sans-serif;
    max-width: 680px;
    margin: 28px auto 80px;
    font-size: 16px;
    line-height: 1.75;
    color: #5a6878;
    font-weight: 300;
}

.section-title h2 {
    text-transform: uppercase;
    position: relative;
    margin-bottom: 80px;
    margin-top: 0;
}

.section-title h2:not(:last-child) {
    margin-bottom: 0;
}

.section-title h2:after {
    content: '';
    position: absolute;
    background-color: #0F2B4D;
    width: 100px;
    height: 4px;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    display: block;
}

.with-bg .section-title h2 {
    color: #ffffff;
}

.with-bg .section-title h2:after {
    background-color: #ffffff;
}

h3.title {
    text-transform: uppercase;
}

h3.title:after {
    content: '';
    background-color: #0F2B4D;
    width: 75px;
    height: 2px;
    margin-top: 15px;
    display: block;
}

h4.title {
    text-transform: uppercase;
}


/* Page Title */

.page-title {
    position: relative;
    z-index: 100;
    min-height: 380px;
    margin-top: 30px;
    background-color: #1d2842;
    background-image:
        -webkit-radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        -webkit-linear-gradient(top, #2c3e63 0%, #1d2842 50%, #0a1628 100%);
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, #2c3e63 0%, #1d2842 50%, #0a1628 100%);
    background-size: 26px 26px, 100% 100%;
    background-position: center center, center center;
    background-repeat: repeat, no-repeat;
    border-top: 2px solid rgba(255, 255, 255, 0.08);
    -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-title:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: -webkit-linear-gradient(left, transparent 0%, rgba(255, 255, 255, 0.25) 30%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.25) 70%, transparent 100%);
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.25) 30%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.25) 70%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.page-title .title-wrap {
    position: absolute;
    bottom: 10%;
}

.page-title .title-wrap h1 {
    color: #ffffff;
    text-transform: uppercase;
}

.page-title .title-wrap h1:after {
    content: '';
    display: block;
    margin-top: 20px;
    width: 75px;
    border-top: 3px solid #ffffff;
}

.page-title .title-wrap .breadcrumbs {
    margin-top: 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
}

.page-title .title-wrap .breadcrumbs a {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 1px;
    -webkit-transition: border-color 0.25s ease, color 0.25s ease;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.page-title .title-wrap .breadcrumbs a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
}

.page-title .title-wrap .breadcrumbs .sep {
    display: inline-block;
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
}

.page-title .title-wrap .breadcrumbs [aria-current="page"] {
    color: #ffffff;
    font-weight: 700;
}


/* Home Slider */

.home-slider {
    display: inline-block;
    float: left;
    width: 100%;
}

.home-slider li {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.home-slider .caption-wrap {
    position: absolute;
    top: 45%;
    width: 35%;
    z-index: 100;
}

.home-slider .caption-wrap h1 {
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.home-slider .caption-wrap p {
    color: #ffffff;
    font-size: 20px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.home-slider .caption-wrap h1:after {
    content: '';
    background-color: #ffffff;
    width: 100px;
    height: 4px;
    margin-top: 25px;
    display: block;
}

.home-slider .flex-direction-nav .flex-next,
.home-slider .flex-direction-nav .flex-prev {
    opacity: 1;
    width: 75px;
    height: 115px;
}

.home-slider .flex-direction-nav .flex-next:hover,
.home-slider .flex-direction-nav .flex-prev:hover {
    opacity: 0.7;
}

.home-slider .flex-direction-nav .flex-next,
.flexslider:hover .flex-direction-nav .flex-next {
    right: 30px;
}

.home-slider .flex-direction-nav .flex-prev,
.flexslider:hover .flex-direction-nav .flex-prev {
    left: 30px;
}

.home-slider .flex-direction-nav a:before {
    font-family: "logistics";
    font-size: 75px;
    color: #ffffff;
}

.home-slider .flex-direction-nav a.flex-next:before {
    content: "\62";
}

.home-slider .flex-direction-nav a.flex-prev:before {
    content: "\61";
}


/* Services */

.services {
    background-color: #f5f7fa;
    background-image:
        -webkit-radial-gradient(50% 0%, ellipse, rgba(255, 255, 255, 0.95) 0%, rgba(245, 247, 250, 0) 60%),
        -webkit-radial-gradient(rgba(15, 43, 77, 0.05) 1px, transparent 1px);
    background-image:
        radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.95) 0%, rgba(245, 247, 250, 0) 60%),
        radial-gradient(rgba(15, 43, 77, 0.05) 1px, transparent 1px);
    background-size: 100% 100%, 24px 24px;
    background-position: center top, center center;
    padding-bottom: 90px;
    display: inline-block;
    width: 100%;
    position: relative;
}

.services:before,
.services:after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.services:before {
    background: -webkit-radial-gradient(circle, rgba(15, 43, 77, 0.06) 0%, transparent 70%);
    background: radial-gradient(circle, rgba(15, 43, 77, 0.06) 0%, transparent 70%);
    top: 10%;
    left: -120px;
}

.services:after {
    background: -webkit-radial-gradient(circle, rgba(15, 43, 77, 0.05) 0%, transparent 70%);
    background: radial-gradient(circle, rgba(15, 43, 77, 0.05) 0%, transparent 70%);
    bottom: 5%;
    right: -120px;
}

.services .email-quote {
    background-color: #0F2B4D;
    position: relative;
    top: -50px;
    z-index: 500;
    padding: 30px 60px;
    margin-bottom: 40px;
    border-radius: 20px;
    -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.services .email-quote h4 {
    display: inline-block;
    float: left;
    margin: 10px 30px 0px 0px;
    color: #ffffff;
    text-transform: uppercase;
}

.services .email-quote form {
    overflow: hidden;
}

.services .email-quote input.col-md-6 {
    width: 50%;
    border-radius: 22px;
    padding-left: 20px;
    padding-right: 20px;
}

.services .email-quote select {
    height: 40px;
    border: none;
    padding: 0 18px;
    cursor: pointer;
    position: relative;
    display: inline;
    width: 62%;
    float: left;
    border-radius: 22px;
}

.services .email-quote button {
    background-color: #0B1E3C;
    color: #ffffff;
    border: none;
    height: 40px;
    padding: 0 25px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-left: 15px;
    border-radius: 22px;
}

.services .services-wrap {
    position: relative;
    z-index: 500;
}

.services .services-content {
    position: relative;
    z-index: 1;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    height: 400px;
}

.services .services-content .services-image {
    background-size: cover;
    background-position: center center;
    display: block;
    width: 100%;
    height: 100%;
}

.services .services-text {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    padding: 0 15%;
    z-index: 500;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.services .item .services-text {
    opacity: 0;
}

.services .active .item .services-text {
    opacity: 1;
}

.services .services-text h3.title {
    text-transform: uppercase;
    color: #ffffff;
}

.services .services-text h3.title:after {
    content: '';
    background-color: #ffffff;
    width: 75px;
    height: 4px;
    display: block;
    margin: 15px auto
}

.services .services-text p {
    font-size: 16px;
    color: #ffffff;
}

.services .item .services-content .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.services .active .item .services-content .overlay {
    background-color: rgba(0, 0, 0, 0.55);
}

.services .services-wrap-carousel .owl-prev,
.services .services-wrap-carousel .owl-next {
    background: transparent !important;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.services .services-wrap-carousel .owl-prev {
    left: 0;
}

.services .services-wrap-carousel .owl-next {
    right: 0;
}

.services .services-wrap-carousel .owl-prev i,
.services .services-wrap-carousel .owl-next i {
    font-size: 60px;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.services .services-wrap-carousel i:hover {
    opacity: 0.6;
}

/* Features */

.features.wrapper {
    padding: 100px 0 60px 0;
}

.features-item {
    position: relative;
    overflow: hidden;
    padding: 20px 20px 20px 150px;
    margin-bottom: 40px;
    -webkit-box-shadow: 0px 5px 30px 0px rgba(50, 50, 50, 0.1);
    -moz-box-shadow: 0px 5px 30px 0px rgba(50, 50, 50, 0.1);
    box-shadow: 0px 5px 30px 0px rgba(50, 50, 50, 0.1);
}

.features-item .icon-wrap {
    background-color: #0F2B4D;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    padding: 0px 35px;
}

.features-item .icon-wrap i {
    font-size: 60px;
    color: #ffffff;
    line-height: 165px;
}


/* Services Calculator */

.services-calculator-wrap {
    position: relative;
}

.services-calculator .intro-section {
    padding-top: 100px;
}

.services-calculator .intro-section p {
    font-size: 16px;
}

.services-calculator .intro-section .image {
    position: absolute;
    max-width: 550px;
}

.services-calculator .intro-section .image img {
    transform: translate(-5%, 12%);
}

.services-calculator .form-section form {
    background-color: #0F2B4D;
    padding: 100px 40px;
}

.services-calculator .form-section form p.intro {
    color: #ffffff;
}

.services-calculator .form-section form label {
    display: inline-block;
    min-width: 140px;
    color: #ffffff;
}
.services-calculator .form-section select {
    width: 100%;
    height: 40px;
    border: none;
    margin-bottom: 30px;
    padding: 0 10px;
    cursor: pointer;
}
.services-calculator .form-section p.extra-services {
    width: 50%;
    display: inline-block;
}
.services-calculator .form-section p.extra-services span,
.services-calculator .form-section p.fragile span {
    width: 100%;
    display: block;
}
.services-calculator .form-section p.extra-services span label,
.services-calculator .form-section p.fragile span label {
    font-size: 13px;
}
.services-calculator .form-section p.extra-services span input,
.services-calculator .form-section p.fragile span input {
    width: 20px;
    height: 17px;
    position: relative;
    top: 5px;
}
.services-calculator .form-section p.fragile {
    width: 50%;
    float: right;
}
.services-calculator .form-section p.fragile span label {
    min-width: 50px;
}
#totalPrice {
    background-color: #0B1E3C;
    padding: 10px 15px;
    margin-top: 30px;
    color: #ffffff;
    font-size: 18px;
    text-transform: uppercase;
}


/* Testimonial */

.testimonial {
    background-image: url(../img/content/testimonial-bg.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.testimonial .owl-carousel .owl-stage-outer {
    padding-bottom: 100px;
}

.testimonial-item {
    position: relative;
    background-color: rgba(255, 255, 255, 0.2);
    background-image: url(../img/content/quote.png);
    background-repeat: no-repeat;
    background-position: 30px 85%;
    padding: 30px 30px 70px 30px;
}

.testimonial-item p {
    color: #ffffff;
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
}

.testimonial-item .client-info {
    position: absolute;
    right: 15px;
    bottom: -50px;
    background-color: #ffffff;
    padding: 15px 20px;
}

.testimonial-item .client-info img {
    width: auto;
    float: left;
    margin-right: 15px;
}

.testimonial-item .client-info .client-details {
    float: right;
    overflow: hidden;
    margin-top: 15px;
}

.testimonial-item .client-info .client-details h3 {
    font-size: 18px;
    margin: 0;
}

.testimonial-item .client-info .client-details p {
    font-size: 16px;
    color: #333333;
    font-style: normal;
    font-weight: 400;
    margin: 0;
}


/* Our Partner */

.our-partner {
    margin-top: 80px;
    display: none; /* desabilitado por hora — reativar quando os logos reais dos parceiros estiverem disponíveis */
}

.partner-logo img {
    margin: 0 auto;
    cursor: pointer;
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -ms-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease;
}

.partner-logo img:hover {
    opacity: 0.5;
}


/* Latest Post */

.latest-post .post-thumb {
    position: relative;
    margin-bottom: 20px;
}

.latest-post .post-thumb .overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(11, 96, 169, 0.8) url(../img/plus.svg) no-repeat;
    background-position: center center;
    background-size: 30px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
}

.latest-post .post-thumb:hover .overlay {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
}

.latest-post .post-content .date {
    float: left;
    margin-right: 15px;
    background-color: #0F2B4D;
    padding: 10px;
}

.latest-post .post-content .date span {
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    display: block;
    color: #ffffff;
}

.latest-post .post-content .content-wrap {
    overflow: hidden;
}

.latest-post .post-content .content-wrap h4 {
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 5px;
}

.latest-post .post-content .content-wrap .meta {
    margin-bottom: 20px;
}

.latest-post .post-content .content-wrap .meta span {
    margin-right: 20px;
}

.latest-post .post-content .content-wrap .meta span.last {
    margin-right: 0;
}

.latest-post .post-content .content-wrap .meta span i {
    color: #0F2B4D;
    margin-right: 5px;
}

.latest-post .post-content .content-wrap p {
    font-size: 16px;
}

.latest-post .owl-theme .owl-controls .owl-nav [class*=owl-],
.team .owl-theme .owl-controls .owl-nav [class*=owl-] {
    top: 15%;
    position: absolute;
    background: none;
    color: #0F2B4D;
    font-size: 52px;
}

.latest-post .owl-theme .owl-controls .owl-nav [class*=owl-]:hover,
.team .owl-theme .owl-controls .owl-nav [class*=owl-]:hover {
    color: #0B1E3C;
}

.latest-post .owl-prev,
.team .owl-prev {
    left: -7%;
}

.latest-post .owl-next,
.team .owl-next {
    right: -7%;
}


/* Counter Number */

.counter-section {
    display: none; /* desabilitado por hora — reativar quando as métricas oficiais estiverem definidas */
    background-image: url(../img/content/counter-bg.jpg);
    background-size: cover;
    background-position: center center;
}

.counter-section h2 {
    color: #0F2B4D;
}

.counter-section h2:after {
    content: '';
    display: block;
    margin-top: 20px;
    width: 50px;
    border-top: 2px solid #0F2B4D;
}

.counter-section p {
    color: #ffffff;
}

.counter-section p.heading {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}


/*-----------------------------------------------------------------------------------*/
/*  3a. About Page
/*-----------------------------------------------------------------------------------*/


/* Company Profile */

.company-slider {
    position: relative;
}

.company-slider img {
    width: 100%;
}

.company-slider .flex-direction-nav {
    display: none;
}

.company-slider .flex-control-nav {
    bottom: 0;
    left: 0;
}

/* === Company Info - redesign === */

.company-info .company-desc {
    padding-right: 30px;
}

.company-info .company-desc .company-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #0F2B4D;
    background-color: rgba(15, 43, 77, 0.08);
    padding: 7px 18px;
    border-radius: 20px;
    margin-bottom: 22px;
}

.company-info .company-desc h2.title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #0F2B4D;
    line-height: 1.25;
    margin: 0 0 28px 0;
    text-transform: none;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 18px;
}

.company-info .company-desc h2.title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: -webkit-linear-gradient(135deg, #0F2B4D 0%, #1A4470 100%);
    background: linear-gradient(135deg, #0F2B4D 0%, #1A4470 100%);
    border-radius: 2px;
}

.company-info .company-desc p {
    font-family: 'Lato', sans-serif;
    font-size: 15.5px;
    line-height: 1.85;
    color: #4a5468;
    margin-bottom: 20px;
    font-weight: 400;
}

.company-info .company-desc p strong {
    color: #0F2B4D;
    font-weight: 700;
}

/* Foto da sede com decorações */
.company-info .company-photo {
    position: relative;
    padding: 20px;
}

.company-info .company-photo:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: 110px;
    border: 3px solid rgba(15, 43, 77, 0.15);
    border-radius: 14px;
    z-index: 0;
}

.company-info .company-photo:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 130px;
    height: 130px;
    background: -webkit-radial-gradient(circle, rgba(15, 43, 77, 0.10) 0%, rgba(15, 43, 77, 0) 70%);
    background: radial-gradient(circle, rgba(15, 43, 77, 0.10) 0%, rgba(15, 43, 77, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.company-info .company-photo-frame {
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    -webkit-box-shadow: 0 18px 50px rgba(15, 43, 77, 0.18);
    box-shadow: 0 18px 50px rgba(15, 43, 77, 0.18);
    position: relative;
    z-index: 1;
    background-color: #0F2B4D;
}

.company-info .company-photo-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    -webkit-transition: -webkit-transform 0.7s ease;
    transition: transform 0.7s ease;
}

.company-info .company-photo-frame:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .company-info .company-desc {
        padding-right: 15px;
        margin-bottom: 50px;
    }
    .company-info .company-desc h2.title {
        font-size: 26px;
    }
    .company-info .company-photo-frame img {
        height: 360px;
    }
}

.company-slider .flex-control-paging li a {
    background: #ffffff;
}

.company-slider .flex-control-paging li a.flex-active {
    background: #0F2B4D;
}

.company-vision {
    display: inline-block;
    margin-top: 100px;
    width: 100%;
}

.company-vision .item {
    text-align: center;
    padding: 40px 26px 32px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #eef0f3;
    -webkit-box-shadow: 0 4px 18px rgba(15, 43, 77, 0.06);
    box-shadow: 0 4px 18px rgba(15, 43, 77, 0.06);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    margin-bottom: 24px;
}

.company-vision .item:hover {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-box-shadow: 0 18px 40px rgba(15, 43, 77, 0.13);
    box-shadow: 0 18px 40px rgba(15, 43, 77, 0.13);
    border-color: rgba(15, 43, 77, 0.18);
}

.company-vision .item .vision-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    background: -webkit-linear-gradient(135deg, #0F2B4D 0%, #1A4470 100%);
    background: linear-gradient(135deg, #0F2B4D 0%, #1A4470 100%);
    border-radius: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 8px 20px rgba(15, 43, 77, 0.20);
    box-shadow: 0 8px 20px rgba(15, 43, 77, 0.20);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.company-vision .item:hover .vision-icon {
    -webkit-box-shadow: 0 12px 26px rgba(15, 43, 77, 0.32);
    box-shadow: 0 12px 26px rgba(15, 43, 77, 0.32);
}

.company-vision .item .vision-icon img {
    width: 50px;
    height: 50px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    margin: 0;
}

.company-vision .item:hover .vision-icon img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.company-vision .item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0F2B4D;
    margin: 0 0 14px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.company-vision .item p {
    font-family: 'Lato', sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    color: #5a6878;
    font-weight: 400;
    margin: 0;
}



/* Team */

.team-photo {
    position: relative;
    overflow: hidden;
}

.team-photo .team-details {
    position: absolute;
    bottom: -40px;
    width: 100%;
    padding: 20px;
    background-color: #0F2B4D;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

.team-photo:hover .team-details {
    background-color: #0B1E3C;
    bottom: 0;
}

.team-photo .team-details h4 {
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
}

.team-photo .team-details p {
    color: #ffffff;
    font-size: 16px;
}

.team-photo .team-details ul {
    padding: 0;
    margin: 0;
}

.team-photo .team-details ul li {
    display: inline-block;
    margin-right: 15px;
}

.team-photo .team-details ul li a {
    color: #ffffff;
    font-size: 16px;
}

.team .owl-theme .owl-controls .owl-nav [class*=owl-] {
    top: 35%;
}


/*-----------------------------------------------------------------------------------*/
/*  3b. Services Page
/*-----------------------------------------------------------------------------------*/

.services-page .services-content {
    margin-bottom: 40px;
}

.services-page .services-text {
    position: relative;
    background-color: #ffffff;
    padding: 30px 30px 80px;
}

.services-page .services-text a.button-normal {
    position: absolute;
    right: 0;
    bottom: 0;
}

.services-page .services-thumb {
    position: relative;
}

.services-page .services-thumb .overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(11, 96, 169, 0.8) url(../img/plus.svg) no-repeat;
    background-position: center center;
    background-size: 30px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
}

.services-page .services-thumb:hover .overlay {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
}


/* Single Services */

.single-services-wrap img {
    width: 100%;
    margin-bottom: 40px;
}

/* === Single Product Page - typography & layout === */

.single-services-wrap .single-content {
    padding-right: 30px;
}

.single-services-wrap .single-content > img {
    border-radius: 16px;
    margin-bottom: 32px;
    -webkit-box-shadow: 0 12px 40px rgba(15, 43, 77, 0.12);
    box-shadow: 0 12px 40px rgba(15, 43, 77, 0.12);
    width: 100%;
    height: auto;
}

.single-services-wrap .single-content h2.title,
.single-services-wrap .single-content h3.title {
    font-family: 'Montserrat', sans-serif;
    color: #0F2B4D;
    text-transform: none;
    margin-top: 0;
    position: relative;
    padding-bottom: 18px;
    letter-spacing: -0.01em;
}

.single-services-wrap .single-content h2.title {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 28px;
}

.single-services-wrap .single-content h3.title {
    font-size: 22px;
    line-height: 1.3;
    margin-top: 50px;
    margin-bottom: 24px;
}

.single-services-wrap .single-content h2.title:after,
.single-services-wrap .single-content h3.title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: -webkit-linear-gradient(135deg, #0F2B4D 0%, #1A4470 100%);
    background: linear-gradient(135deg, #0F2B4D 0%, #1A4470 100%);
    border-radius: 2px;
}

.single-services-wrap .single-content h3.title:after {
    width: 50px;
    height: 3px;
}

.single-services-wrap .content-text p {
    font-family: 'Lato', sans-serif;
    font-size: 15.5px;
    line-height: 1.85;
    color: #4a5468;
    margin-bottom: 20px;
    font-weight: 400;
}

.single-services-wrap .content-text p:first-of-type {
    font-size: 17px;
    color: #2c3a4d;
    line-height: 1.75;
}

.single-services-wrap .content-text p strong {
    color: #0F2B4D;
    font-weight: 700;
}

/* === Single Product Page - feature cards === */

.single-services-wrap .features-wrap {
    margin-top: 16px;
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.single-services-wrap .features-wrap > [class*="col-md"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 24px;
}

.single-services-wrap .features-item {
    width: 100%;
    padding: 32px 24px 28px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #eef0f3;
    -webkit-box-shadow: 0 2px 12px rgba(15, 43, 77, 0.04);
    box-shadow: 0 2px 12px rgba(15, 43, 77, 0.04);
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
}

.single-services-wrap .features-item:hover {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
    -webkit-box-shadow: 0 18px 40px rgba(15, 43, 77, 0.13);
    box-shadow: 0 18px 40px rgba(15, 43, 77, 0.13);
    border-color: rgba(15, 43, 77, 0.18);
}

.single-services-wrap .features-item .icon-wrap {
    position: static;
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    padding: 0;
    background: -webkit-linear-gradient(135deg, #0F2B4D 0%, #1A4470 100%);
    background: linear-gradient(135deg, #0F2B4D 0%, #1A4470 100%);
    border-radius: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 6px 16px rgba(15, 43, 77, 0.20);
    box-shadow: 0 6px 16px rgba(15, 43, 77, 0.20);
    -webkit-transition: -webkit-box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
}

.single-services-wrap .features-item:hover .icon-wrap {
    -webkit-box-shadow: 0 10px 24px rgba(15, 43, 77, 0.32);
    box-shadow: 0 10px 24px rgba(15, 43, 77, 0.32);
}

.single-services-wrap .features-item .icon-wrap img {
    width: 46px;
    height: 46px;
    max-width: 46px;
    max-height: 46px;
    object-fit: contain;
    object-position: center;
    display: block;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
}

.single-services-wrap .features-item:hover .icon-wrap img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.single-services-wrap .features-item .icon-wrap i {
    font-size: 32px;
    color: #ffffff;
    line-height: 1;
}

.single-services-wrap .features-item .text {
    text-align: center;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.single-services-wrap .features-item .text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0F2B4D;
    margin-bottom: 12px;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: -0.005em;
}

.single-services-wrap .features-item .text p {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: #5a6878;
    font-weight: 400;
    margin-bottom: 0;
}

.contact-us-banner {
    margin-top: 80px;
}

.contact-us-banner h1 {
    text-transform: uppercase;
}


/* Sidebar */

.sidebar {
    padding-left: 30px;
}

.sidebar .widget {
    margin-bottom: 40px;
}

.sidebar .widget.last {
    margin-bottom: 0;
}

.sidebar .widget ul {
    padding: 0;
}

.sidebar .widget ul li {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e3e3e3;
}

.sidebar .widget ul li a {
    font-size: 16px;
    color: #333333;
    width: 100%;
    display: block;
    position: relative;
    left: 0;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

.sidebar .widget ul li a:hover {
    color: #0F2B4D;
    left: 10px;
}

.sidebar .widget.pdf-download {
    background-color: #0F2B4D;
    padding: 20px;
}

.sidebar .widget.pdf-download h4 {
    color: #ffffff
}

.sidebar .widget.pdf-download ul li {
    border-bottom: 1px solid #004D90;
}

.sidebar .widget.pdf-download ul li a {
    color: #ffffff;
}

.sidebar .widget.pdf-download ul li a span {
    margin-right: 5px;
}


/*-----------------------------------------------------------------------------------*/
/*  3c. Blog Page
/*-----------------------------------------------------------------------------------*/

.blog .post {
    display: inline-block;
}

.blog .post-item {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e3e3e3;
}

.blog .post-thumb {
    position: relative;
}

.blog .post-thumb .overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(11, 96, 169, 0.8) url(../img/plus.svg) no-repeat;
    background-position: center center;
    background-size: 30px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
}

.blog .post-thumb:hover .overlay {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
}

.blog .post-item .post-thumb img {
    width: 100%;
    margin-bottom: 30px;
}

.blog .post-item a.post-title {
    color: #333333;
}

.blog .post-item h3 {
    text-transform: uppercase;
    margin-bottom: 5px;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.blog .post-item h3:hover {
    color: #0F2B4D;
}

.blog .post-item .meta {
    margin-bottom: 20px;
}

.blog .post-item .meta span {
    margin-right: 20px;
}

.blog .post-item .meta span.last {
    margin-right: 0;
}

.blog .post-item .meta span i {
    color: #0F2B4D;
    margin-right: 5px;
}
.blog .pagination {
    margin: 0;
}
.pagination span.active {
    font-size: 16px;
    color: #ffffff;
    background-color: #0F2B4D;
    border: 1px solid #0F2B4D;
    width: 35px;
    height: 35px;
    line-height: 32px;
    display: inline-block;
    text-align: center;
    margin: 0px 2px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.pagination span a {
    font-size: 16px;
    background-color: #ececec;
    border: 1px solid #cacaca;
    width: 35px;
    height: 35px;
    line-height: 32px;
    display: inline-block;
    text-align: center;
    margin: 0px 2px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.pagination span a:hover {
    background-color: #0F2B4D;
    border: 1px solid #0F2B4D;
    color: #ffffff;
}
.pagination span.last a {
    margin-right: 0;
}

/* Sidebar */

.sidebar .recent-post .post-item {
    margin-bottom: 20px;
}

.sidebar .recent-post .post-thumb {
    float: left;
    width: 60px;
    margin-right: 15px;
}

.sidebar .recent-post .post-thumb img {
    margin: 0;
}

.sidebar .recent-post .overlay {
    background-size: 16px;
}

.sidebar .recent-post .post-content h4 {
    text-transform: capitalize;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 5px;
    color: #333333;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.sidebar .recent-post .post-content h4:hover {
    color: #0F2B4D;
}

.sidebar .recent-post .post-content .meta {
    margin: 0;
}

.sidebar .tags a {
    display: inline-block;
    background-color: #0F2B4D;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 12px;
    padding: 5px 5px;
    margin-right: 5px;
    margin-bottom: 9px;
}

.sidebar .tags a:hover {
    background-color: #0B1E3C;
}


/* Single Post */

.single-post .post .post-item {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.share {
    margin-top: 60px;
}

.share span {
    position: relative;
    float: left;
    margin-right: 10px;
    margin-top: 5px;
    font-size: 16px;
    font-weight: 700;
}

.share ul {
    padding: 0;
}

.share ul li {
    display: inline-block;
    margin-right: 10px;
}

.share ul li a {
    font-size: 16px;
    background-color: #ececec;
    border: 1px solid #cacaca;
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: inline-block;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.share ul li a:hover {
    background-color: #0F2B4D;
    border: 1px solid #0F2B4D;
    color: #ffffff;
}


/*-----------------------------------------------------------------------------------*/
/*  3d. Contact Page
/*-----------------------------------------------------------------------------------*/

/* ===== Contact Page - Redesign ===== */

.contact-page {
    padding: 90px 0 70px;
}

.contact-page .contact-header {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}

.contact-page .contact-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #0F2B4D;
    background-color: rgba(15, 43, 77, 0.08);
    padding: 7px 18px;
    border-radius: 20px;
    margin-bottom: 22px;
}

.contact-page .contact-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #0F2B4D;
    line-height: 1.25;
    margin: 0 0 18px 0;
    text-transform: none;
    letter-spacing: -0.01em;
}

.contact-page .contact-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #5a6878;
    font-weight: 400;
    margin: 0;
}

/* Contact info cards */
.contact-page .contact-card {
    background: -webkit-linear-gradient(135deg, #0F2B4D 0%, #1A4470 100%);
    background: linear-gradient(135deg, #0F2B4D 0%, #1A4470 100%);
    border-radius: 16px;
    padding: 28px 26px;
    -webkit-box-shadow: 0 8px 25px rgba(15, 43, 77, 0.15);
    box-shadow: 0 8px 25px rgba(15, 43, 77, 0.15);
    color: #ffffff;
    margin-bottom: 22px;
}

.contact-page .contact-card .card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 22px 0;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    text-transform: none;
    letter-spacing: -0.005em;
}

.contact-page .contact-card .card-title i {
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-page .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-page .contact-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 18px;
}

.contact-page .contact-list li:last-child {
    margin-bottom: 0;
}

.contact-page .contact-icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.10);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 14px;
    font-size: 14px;
    color: #ffffff;
}

.contact-page .contact-info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.contact-page .contact-info strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 3px;
}

.contact-page .contact-info a {
    color: #ffffff;
    text-decoration: none;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.contact-page .contact-info a:hover {
    opacity: 0.7;
}

/* Hours list */
.contact-page .hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-page .hours-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
}

.contact-page .hours-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-page .hours-list span {
    color: rgba(255, 255, 255, 0.7);
}

.contact-page .hours-list strong {
    color: #ffffff;
    font-weight: 600;
}

/* Form */
.contact-page .contact-form form {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 30px 30px;
    -webkit-box-shadow: 0 8px 25px rgba(15, 43, 77, 0.06);
    box-shadow: 0 8px 25px rgba(15, 43, 77, 0.06);
    margin: 0;
}

.contact-page .contact-form p {
    margin-bottom: 20px;
    padding: 0 10px;
}

.contact-page .contact-form label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0F2B4D;
    margin-bottom: 8px;
}

.contact-page .contact-form label .req {
    color: #d63b3b;
    margin-left: 3px;
}

.contact-page .contact-form input[type="text"],
.contact-page .contact-form input[type="email"],
.contact-page .contact-form textarea {
    width: 100%;
    height: 46px;
    padding: 0 16px;
    background: #f5f7fa;
    border: 1.5px solid transparent;
    border-radius: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #2c3a4d;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.contact-page .contact-form textarea {
    height: auto;
    padding: 14px 16px;
    line-height: 1.6;
    resize: vertical;
    min-height: 140px;
}

.contact-page .contact-form input:focus,
.contact-page .contact-form textarea:focus {
    background: #ffffff;
    border-color: #0F2B4D;
    -webkit-box-shadow: 0 4px 14px rgba(15, 43, 77, 0.10);
    box-shadow: 0 4px 14px rgba(15, 43, 77, 0.10);
    outline: none;
}

.contact-page .contact-form input::-webkit-input-placeholder,
.contact-page .contact-form textarea::-webkit-input-placeholder {
    color: #95a3b6;
}

.contact-page .contact-form input::placeholder,
.contact-page .contact-form textarea::placeholder {
    color: #95a3b6;
}

.contact-page .contact-form .submit-row {
    margin-top: 8px;
    margin-bottom: 0;
    text-align: left;
}

.contact-page .contact-form button.button-normal {
    background: -webkit-linear-gradient(135deg, #0F2B4D 0%, #1A4470 100%);
    background: linear-gradient(135deg, #0F2B4D 0%, #1A4470 100%);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    -webkit-box-shadow: 0 6px 18px rgba(15, 43, 77, 0.20);
    box-shadow: 0 6px 18px rgba(15, 43, 77, 0.20);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact-page .contact-form button.button-normal:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 10px 24px rgba(15, 43, 77, 0.32);
    box-shadow: 0 10px 24px rgba(15, 43, 77, 0.32);
    background: -webkit-linear-gradient(135deg, #0B1E3C 0%, #0F2B4D 100%);
    background: linear-gradient(135deg, #0B1E3C 0%, #0F2B4D 100%);
}

.contact-page .contact-form button.button-normal i {
    margin-left: 10px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .contact-page .contact-header h2 {
        font-size: 26px;
    }
    .contact-page .contact-form form {
        padding: 26px 16px 20px;
    }
}

.map {
    position: relative;
    z-index: -1;
}

.map iframe {
    border: 0;
    width: 100%;
    height: 400px;
    display: inherit;
}


/*-----------------------------------------------------------------------------------*/
/*  4. Footer
/*-----------------------------------------------------------------------------------*/

#footer {
    position: relative;
    padding: 80px 0 0 0;
    background-color: #0a1830;
    background-image:
        -webkit-linear-gradient(135deg, rgba(15, 43, 77, 0.92) 0%, rgba(10, 24, 48, 0.96) 50%, rgba(6, 16, 32, 0.98) 100%);
    background-image:
        linear-gradient(135deg, rgba(15, 43, 77, 0.92) 0%, rgba(10, 24, 48, 0.96) 50%, rgba(6, 16, 32, 0.98) 100%);
    overflow: hidden;
}

/* Linhas tecnológicas decorativas no footer */
#footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        -webkit-linear-gradient(45deg, transparent 49.6%, rgba(255, 255, 255, 0.04) 49.8%, rgba(255, 255, 255, 0.04) 50.2%, transparent 50.4%),
        -webkit-linear-gradient(-45deg, transparent 49.6%, rgba(255, 255, 255, 0.03) 49.8%, rgba(255, 255, 255, 0.03) 50.2%, transparent 50.4%);
    background-image:
        linear-gradient(45deg, transparent 49.6%, rgba(255, 255, 255, 0.04) 49.8%, rgba(255, 255, 255, 0.04) 50.2%, transparent 50.4%),
        linear-gradient(-45deg, transparent 49.6%, rgba(255, 255, 255, 0.03) 49.8%, rgba(255, 255, 255, 0.03) 50.2%, transparent 50.4%);
    background-size: 80px 80px, 120px 120px;
    background-position: 0 0, 0 0;
    pointer-events: none;
    z-index: 0;
}

#footer:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: -webkit-linear-gradient(left, transparent 0%, rgba(255, 255, 255, 0.15) 30%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.15) 70%, transparent 100%);
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.15) 30%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.15) 70%, transparent 100%);
    z-index: 1;
}

#footer > .container {
    position: relative;
    z-index: 2;
}

#footer .copyright {
    position: relative;
    z-index: 2;
}


/* Widget Footer */

.widget-footer p {
    color: #ffffff;
}

.widget-footer h4.title {
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.widget-footer h4.title:after {
    content: '';
    display: block;
    margin-top: 20px;
    width: 50px;
    border-top: 2px solid #ffffff;
}

.widget-footer .footer-content h4 {
    color: #ffffff;
    margin-bottom: 10px;
}


/* Widget Footer - Short Desc */

#footer .widget-footer .short-desc img {
    margin-bottom: 30px;
    max-width: 160px;
    height: auto;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}


/* Widget Footer - Recent Post */

.widget-footer .recent-post .post-item {
    padding: 15px 0;
}

.widget-footer .recent-post .post-item:first-child {
    padding-top: 0;
}

.widget-footer .recent-post .post-item:last-child {
    border-bottom: none;
}

.widget-footer .recent-post .post-item .post-thumb {
    float: left;
    margin-right: 15px;
    position: relative;
}

.widget-footer .recent-post .post-item .post-thumb .overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(11, 96, 169, 0.8) url(../img/plus.svg) no-repeat;
    background-position: center center;
    background-size: 15px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
}

.widget-footer .recent-post .post-item .post-thumb:hover .overlay {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
}

.widget-footer .recent-post .post-item .post-content {
    overflow: hidden;
}

.widget-footer .recent-post .post-item .post-content h4 {
    text-transform: capitalize;
    font-size: 16px;
}

.widget-footer .recent-post .post-item .post-content span.date {
    color: #ffffff;
    font-size: 12px;
    font-style: italic;
}


/* Widget Footer - Contact */

.widget-footer .contact-section {
    padding: 15px 0;
}

.widget-footer .contact-section:first-child {
    padding-top: 0;
}

.widget-footer .contact-section:last-child {
    border-bottom: none;
}

.widget-footer .contact-section h4 {
    font-size: 16px;
}

.widget-footer .contact-section p {
    margin: 0;
}


/* Copyright */

.copyright {
    background-color: rgba(1, 47, 84, 0.8);
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 60px 0;
}

.copyright .social-icon ul {
    padding: 0;
    margin-bottom: 30px;
}

.copyright .social-icon ul li {
    display: inline-block;
    margin: 0 20px;
}

.copyright .social-icon ul li a {
    color: #ffffff;
    font-size: 24px;
}

.copyright .social-icon ul li a:hover {
    opacity: 0.5;
}

.copyright p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.1em;
}


/*-----------------------------------------------------------------------------------*/
/*  Servicos - Cards com altura uniforme                                              */
/*-----------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------*/
/*  BM Impact - Storytelling section criativa                                          */
/*-----------------------------------------------------------------------------------*/

.bm-impact {
    padding: 110px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.bm-impact:before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 45%;
    height: 100%;
    background-image: radial-gradient(rgba(15, 43, 77, 0.06) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
    z-index: 0;
}

.bm-impact .container {
    position: relative;
    z-index: 1;
}

.bm-impact-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 60px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* ============ LEFT: visual area ============ */
.bm-impact-visual {
    position: relative;
    height: 540px;
    -ms-grid-column: 1;
}

.bm-impact-decor {
    position: absolute;
    top: -20px;
    left: -50px;
    width: 240px;
    height: 240px;
    background: -webkit-radial-gradient(circle, rgba(15, 43, 77, 0.10) 0%, rgba(15, 43, 77, 0) 70%);
    background: radial-gradient(circle, rgba(15, 43, 77, 0.10) 0%, rgba(15, 43, 77, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.bm-impact-img {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    -webkit-box-shadow: 0 20px 50px rgba(15, 43, 77, 0.18);
    box-shadow: 0 20px 50px rgba(15, 43, 77, 0.18);
    z-index: 2;
    background-color: #f0f3f7;
}

.bm-impact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-transition: -webkit-transform 0.6s ease;
    transition: transform 0.6s ease;
}

.bm-impact-img:hover img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

.bm-impact-img-1 {
    top: 0;
    left: 0;
    width: 70%;
    height: 320px;
}

.bm-impact-img-2 {
    bottom: 30px;
    left: 0;
    width: 50%;
    height: 200px;
    z-index: 3;
    border: 6px solid #ffffff;
}

.bm-impact-img-3 {
    top: 80px;
    right: 0;
    width: 48%;
    height: 380px;
}

/* Floating stat card */
.bm-impact-stat {
    position: absolute;
    bottom: 0;
    right: 20px;
    background: -webkit-linear-gradient(135deg, #0F2B4D 0%, #1A4470 100%);
    background: linear-gradient(135deg, #0F2B4D 0%, #1A4470 100%);
    color: #ffffff;
    padding: 22px 30px;
    border-radius: 20px;
    -webkit-box-shadow: 0 18px 40px rgba(15, 43, 77, 0.32);
    box-shadow: 0 18px 40px rgba(15, 43, 77, 0.32);
    z-index: 4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.bm-impact-stat .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    margin-right: 14px;
}

.bm-impact-stat .stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.35;
}

/* ============ RIGHT: content area ============ */
.bm-impact-content {
    position: relative;
    -ms-grid-column: 3;
}

.bm-impact-content .bm-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #0F2B4D;
    background-color: rgba(15, 43, 77, 0.08);
    padding: 8px 18px;
    border-radius: 20px;
    margin-bottom: 22px;
}

.bm-impact-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #0F2B4D;
    line-height: 1.1;
    margin: 0 0 30px 0;
    text-transform: none;
    letter-spacing: -0.025em;
}

.bm-impact-content h2 em {
    display: block;
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-weight: 300;
    color: #1A4470;
    margin-top: 8px;
    letter-spacing: -0.015em;
    font-size: 0.85em;
}

.bm-impact-content p {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: #5a6878;
    margin-bottom: 18px;
    font-weight: 400;
}

.bm-impact-content p.lead {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    color: #2c3a4d;
    font-weight: 400;
    margin-bottom: 22px;
}

.bm-impact-content p strong {
    color: #0F2B4D;
    font-weight: 700;
}

.bm-impact-content p a {
    color: #0F2B4D;
    text-decoration: underline;
    text-decoration-color: rgba(15, 43, 77, 0.35);
    text-underline-offset: 3px;
    -webkit-transition: text-decoration-color 0.2s;
    transition: text-decoration-color 0.2s;
}

.bm-impact-content p a:hover {
    text-decoration-color: #0F2B4D;
}

/* Pilares - lista com checkmarks */
.bm-pillars {
    list-style: none;
    padding: 0;
    margin: 26px 0 32px 0;
}

.bm-pillars li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    color: #2c3a4d;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: -0.005em;
}

.bm-pillars li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: -webkit-linear-gradient(135deg, #0F2B4D 0%, #1A4470 100%);
    background: linear-gradient(135deg, #0F2B4D 0%, #1A4470 100%);
    border-radius: 50%;
    -webkit-box-shadow: 0 4px 10px rgba(15, 43, 77, 0.20);
    box-shadow: 0 4px 10px rgba(15, 43, 77, 0.20);
}

.bm-pillars li:after {
    content: '\2713';
    position: absolute;
    left: 6px;
    top: 1px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 22px;
}

.bm-impact-content .button-normal {
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 991px) {
    .bm-impact-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .bm-impact-visual {
        height: 480px;
    }
    .bm-impact-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 600px) {
    .bm-impact {
        padding: 70px 0;
    }
    .bm-impact-visual {
        height: auto;
    }
    .bm-impact-img {
        position: static;
        width: 100% !important;
        height: 220px !important;
        margin-bottom: 14px;
        border: none;
    }
    .bm-impact-decor,
    .bm-impact-stat {
        display: none;
    }
    .bm-impact-content h2 {
        font-size: 26px;
    }
}


/*-----------------------------------------------------------------------------------*/
/*  Servicos - Cards verticais modernos                                                */
/*-----------------------------------------------------------------------------------*/

#servicos .features-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

#servicos .features-wrap > [class*="col-md"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}

#servicos .features-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 42px 30px 34px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #eef0f3;
    -webkit-box-shadow: 0 2px 12px rgba(15, 43, 77, 0.04);
    box-shadow: 0 2px 12px rgba(15, 43, 77, 0.04);
    text-align: center;
    overflow: hidden;
    position: relative;
    -webkit-transition: -webkit-transform 0.35s ease, -webkit-box-shadow 0.35s ease, border-color 0.35s ease;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    margin-bottom: 0;
}

#servicos .features-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(0);
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: -webkit-linear-gradient(left, transparent 0%, #0F2B4D 50%, transparent 100%);
    background: linear-gradient(to right, transparent 0%, #0F2B4D 50%, transparent 100%);
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
}

#servicos .features-item:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
    -webkit-box-shadow: 0 20px 45px rgba(15, 43, 77, 0.13);
    box-shadow: 0 20px 45px rgba(15, 43, 77, 0.13);
    border-color: rgba(15, 43, 77, 0.18);
}

#servicos .features-item:hover:before {
    -webkit-transform: translateX(-50%) scaleX(1);
    transform: translateX(-50%) scaleX(1);
}

#servicos .features-item .icon-wrap {
    position: static;
    width: 92px;
    height: 92px;
    margin: 0 auto 26px;
    padding: 0;
    background: -webkit-linear-gradient(135deg, #0F2B4D 0%, #1A4470 100%);
    background: linear-gradient(135deg, #0F2B4D 0%, #1A4470 100%);
    border-radius: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 8px 18px rgba(15, 43, 77, 0.18);
    box-shadow: 0 8px 18px rgba(15, 43, 77, 0.18);
    -webkit-transition: -webkit-box-shadow 0.35s ease, -webkit-transform 0.35s ease;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

#servicos .features-item:hover .icon-wrap {
    background: -webkit-linear-gradient(135deg, #0B1E3C 0%, #0F2B4D 100%);
    background: linear-gradient(135deg, #0B1E3C 0%, #0F2B4D 100%);
    -webkit-box-shadow: 0 12px 26px rgba(15, 43, 77, 0.30);
    box-shadow: 0 12px 26px rgba(15, 43, 77, 0.30);
}

#servicos .features-item .icon-wrap img {
    max-width: 56px;
    max-height: 56px;
    width: auto;
    height: auto;
    -webkit-filter: brightness(0) invert(1) !important;
    filter: brightness(0) invert(1) !important;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
}

#servicos .features-item:hover .icon-wrap img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#servicos .features-item .icon-wrap i {
    font-size: 38px;
    color: #ffffff;
    line-height: 1;
}

#servicos .features-item .text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
}

#servicos .features-item .text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0F2B4D;
    margin-bottom: 14px;
    line-height: 1.4;
    letter-spacing: -0.005em;
}

#servicos .features-item .text p {
    color: #5a6878;
    line-height: 1.7;
    font-size: 14.5px;
    margin-bottom: 24px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    font-weight: 400;
}

#servicos .features-item .text .button-normal {
    background: transparent;
    color: #0F2B4D;
    padding: 0;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -ms-flex-item-align: center;
    align-self: center;
    margin-top: auto;
    text-transform: uppercase;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

#servicos .features-item .text .button-normal:hover {
    background: transparent;
    color: #0F2B4D;
    -webkit-transform: none;
    transform: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom-color: #0F2B4D;
}

#servicos .features-item .text a.button-normal.with-icon {
    padding: 0 0 4px 0;
}

#servicos .features-item .text a.button-normal.with-icon .icon {
    position: static;
    height: auto;
    line-height: 1;
    padding: 0;
    background-color: transparent;
    color: #0F2B4D;
    margin-left: 8px;
    font-size: 14px;
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
}

#servicos .features-item .text .button-normal:hover .icon {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

#servicos .features-item .text .button-normal i {
    margin-left: 8px;
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
    font-size: 14px;
}

#servicos .features-item .text .button-normal:hover i {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}


/*-----------------------------------------------------------------------------------*/
/*  RESPONSIVE - Componentes redesenhados (mobile-first overrides)                     */
/*-----------------------------------------------------------------------------------*/

/* === Tablet (≤ 991px) === */
@media only screen and (max-width: 991px) {

    /* Top header - logo à esquerda + hamburger à direita */
    .top-header {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 16px 20px;
        margin-top: 20px;
    }
    .top-header .logo {
        width: auto;
        margin-bottom: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }
    .top-header .logo img {
        max-height: 50px;
        width: auto;
    }

    /* Esconder info e social-icons em mobile - só hamburger e logo */
    .top-header .info {
        display: none;
    }
    .top-header .social-icons {
        display: none;
    }

    /* Slider hero text */
    .home-slider .caption-wrap h1 {
        font-size: 30px;
    }
    .home-slider .caption-wrap p {
        font-size: 16px;
    }

    /* Section title */
    .section-title h2 {
        font-size: 26px;
    }
    .section-title .section-subtitle {
        font-size: 15px;
    }

    /* Page title hero */
    .page-title {
        min-height: 280px;
        margin-top: 18px;
    }
    .page-title .title-wrap h1 {
        font-size: 28px;
    }
    .page-title .title-wrap .breadcrumbs {
        font-size: 11px;
    }

    /* Company vision cards (about-us) */
    .company-vision .item {
        margin-bottom: 20px;
    }

    /* Servicos cards */
    #servicos .features-item {
        padding: 32px 22px 26px;
    }

    /* Footer columns spacing */
    #footer {
        padding: 60px 0 0 0;
    }
    #footer .widget-footer {
        margin-bottom: 40px;
    }
}

/* === Mobile (≤ 768px) === */
@media only screen and (max-width: 768px) {

    /* Header */
    .top-header {
        padding: 16px;
    }
    .top-header ul li {
        margin: 4px 8px;
    }
    .top-header ul li i {
        width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 16px;
    }
    .top-header ul li p span {
        font-size: 13px;
    }
    .top-header ul li p span.heading {
        font-size: 10px;
    }
    .top-header .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    /* Slider hero */
    .home-slider .caption-wrap h1 {
        font-size: 24px;
    }
    .home-slider .caption-wrap p {
        font-size: 14px;
        line-height: 1.5;
    }
    .home-slider .caption-wrap a.button-normal {
        font-size: 12px;
        padding: 10px 24px;
    }

    /* Section eyebrow + title */
    .section-title .section-eyebrow {
        font-size: 10px;
        letter-spacing: 0.22em;
        padding: 6px 14px;
    }
    .section-title h2 {
        font-size: 22px;
    }
    .section-title .section-subtitle {
        font-size: 14px;
        line-height: 1.65;
        margin: 22px auto 60px;
    }

    /* Page title hero */
    .page-title {
        min-height: 220px;
    }
    .page-title .title-wrap h1 {
        font-size: 22px;
    }

    /* Email quote (form home) */
    .services .email-quote {
        padding: 24px 20px;
    }
    .services .email-quote h4 {
        font-size: 18px;
    }

    /* BM Impact */
    .bm-impact {
        padding: 70px 0;
    }
    .bm-impact-content h2 {
        font-size: 26px;
    }
    .bm-impact-content h2 em {
        font-size: 0.8em;
    }
    .bm-impact-content p {
        font-size: 14px;
    }
    .bm-impact-content p.lead {
        font-size: 15px;
    }
    .bm-pillars li {
        font-size: 12.5px;
    }

    /* Servicos cards */
    #servicos .features-wrap > [class*="col-md"] {
        margin-bottom: 16px;
    }
    #servicos .features-item {
        padding: 30px 20px 22px;
    }
    #servicos .features-item .icon-wrap {
        width: 80px;
        height: 80px;
    }
    #servicos .features-item .text h4 {
        font-size: 15px;
    }
    #servicos .features-item .text p {
        font-size: 13.5px;
    }

    /* Single product pages */
    .single-services-wrap .single-content {
        padding-right: 15px;
    }
    .single-services-wrap .single-content h2.title {
        font-size: 22px;
    }
    .single-services-wrap .single-content h3.title {
        font-size: 18px;
        margin-top: 36px;
    }
    .single-services-wrap .content-text p {
        font-size: 14px;
    }
    .single-services-wrap .content-text p:first-of-type {
        font-size: 15px;
    }
    .single-services-wrap .features-item {
        padding: 26px 18px 22px;
    }
    .single-services-wrap .sidebar {
        padding-left: 15px;
        margin-top: 50px;
    }

    /* Contact page */
    .contact-page {
        padding: 60px 0 50px;
    }
    .contact-page .contact-header {
        margin-bottom: 40px;
    }
    .contact-page .contact-header h2 {
        font-size: 24px;
    }
    .contact-page .contact-subtitle {
        font-size: 14px;
    }
    .contact-page .contact-card {
        padding: 22px 20px;
    }
    .contact-page .contact-form form {
        padding: 24px 16px 20px;
    }
    .contact-page .contact-form p {
        margin-bottom: 16px;
        padding: 0 8px;
    }
    .contact-page .contact-form input,
    .contact-page .contact-form textarea {
        font-size: 13.5px;
        height: 44px;
    }
    .contact-page .contact-form button.button-normal {
        padding: 12px 24px;
        font-size: 12px;
    }

    /* Company photo (about-us) */
    .company-info .company-desc {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .company-info .company-desc h2.title {
        font-size: 24px;
    }
    .company-info .company-photo {
        padding: 12px;
    }
    .company-info .company-photo:before,
    .company-info .company-photo:after {
        display: none;
    }
    .company-info .company-photo-frame img {
        height: 280px;
    }

    /* Company vision */
    .company-vision {
        margin-top: 60px;
    }
    .company-vision .item {
        padding: 32px 20px 28px;
    }
    .company-vision .item .vision-icon {
        width: 76px;
        height: 76px;
    }
    .company-vision .item .vision-icon img {
        width: 42px;
        height: 42px;
    }

    /* CTA buttons */
    a.button-normal,
    .button-normal {
        font-size: 12px;
        padding: 11px 24px;
        letter-spacing: 0.1em;
    }

    /* Contact us banner */
    .contact-us-banner h1 {
        font-size: 22px !important;
    }

    /* Footer */
    #footer {
        padding: 50px 0 0 0;
    }
    #footer .widget-footer {
        margin-bottom: 32px;
    }
    #footer .widget-footer h4.title {
        font-size: 16px;
    }
    #footer .copyright {
        padding: 20px 15px;
    }
    #footer .copyright p {
        font-size: 12px;
    }
}

/* === Small mobile (≤ 480px) === */
@media only screen and (max-width: 480px) {

    .container {
        padding: 0 18px;
    }

    .home-slider .caption-wrap h1 {
        font-size: 20px;
    }
    .home-slider .caption-wrap p {
        font-size: 13px;
    }

    .page-title .title-wrap h1 {
        font-size: 20px;
    }
    .page-title .title-wrap .breadcrumbs .sep {
        margin: 0 6px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .bm-impact-content h2 {
        font-size: 22px;
    }

    /* Servicos cards full width */
    #servicos .features-wrap > [class*="col-md"] {
        width: 100%;
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }

    .top-header .social-icons a + a {
        margin-left: 6px;
    }

    .contact-page .hours-list li {
        font-size: 13px;
        padding: 9px 0;
    }
}

/*-----------------------------------------------------------------------------------*/
/*  Digital Channels - Card contido em fundo claro                                     */
/*-----------------------------------------------------------------------------------*/

.digital-channels-section {
    position: relative;
    padding: 80px 0 90px;
    background: -webkit-linear-gradient(180deg, #ffffff 0%, #f3f5f8 100%);
    background: linear-gradient(180deg, #ffffff 0%, #f3f5f8 100%);
    overflow: hidden;
}

.digital-channels-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: -webkit-linear-gradient(90deg, transparent 0%, #0F2B4D 50%, transparent 100%);
    background: linear-gradient(90deg, transparent 0%, #0F2B4D 50%, transparent 100%);
    opacity: 0.18;
}

.digital-channels-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 80px 50px;
    background-image: url('../img/slider/slide1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    text-align: center;
    -webkit-box-shadow: 0 30px 70px rgba(15, 43, 77, 0.28), 0 8px 20px rgba(15, 43, 77, 0.12);
    box-shadow: 0 30px 70px rgba(15, 43, 77, 0.28), 0 8px 20px rgba(15, 43, 77, 0.12);
    -webkit-transition: -webkit-transform 0.4s ease, -webkit-box-shadow 0.4s ease;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.digital-channels-card:hover {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0 38px 90px rgba(15, 43, 77, 0.36), 0 10px 24px rgba(15, 43, 77, 0.16);
    box-shadow: 0 38px 90px rgba(15, 43, 77, 0.36), 0 10px 24px rgba(15, 43, 77, 0.16);
}

.digital-channels-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: -webkit-linear-gradient(135deg, rgba(15, 43, 77, 0.94) 0%, rgba(11, 30, 60, 0.88) 60%, rgba(26, 68, 112, 0.92) 100%);
    background: linear-gradient(135deg, rgba(15, 43, 77, 0.94) 0%, rgba(11, 30, 60, 0.88) 60%, rgba(26, 68, 112, 0.92) 100%);
    z-index: 0;
}

.digital-channels-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    -webkit-filter: blur(40px);
    filter: blur(40px);
}

.digital-channels-shape-1 {
    top: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(44, 108, 176, 0.55) 0%, rgba(44, 108, 176, 0) 70%);
}

.digital-channels-shape-2 {
    bottom: -100px;
    right: -100px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(73, 156, 230, 0.45) 0%, rgba(73, 156, 230, 0) 70%);
}

.digital-channels-dots {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 140px;
    height: 140px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1.2px, transparent 1.2px);
    background-size: 18px 18px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
}

.digital-channels-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
}

.digital-channels-eyebrow {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 8px 20px;
    border-radius: 22px;
    margin-bottom: 24px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.digital-channels-eyebrow i {
    font-size: 12px;
    opacity: 0.85;
}

.digital-channels-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 22px;
    text-transform: none;
    letter-spacing: -0.005em;
}

.digital-channels-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.90);
    font-weight: 300;
    max-width: 720px;
    margin: 0 auto 40px;
}

.digital-channels-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 18px;
}

a.button-normal.digital-channels-btn {
    background-color: #ffffff;
    color: #0F2B4D;
    padding: 14px 34px;
    margin-top: 0;
    font-size: 13px;
    letter-spacing: 0.14em;
    -webkit-box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

a.button-normal.digital-channels-btn i {
    margin-right: 8px;
    font-size: 15px;
}

a.button-normal.digital-channels-btn:hover {
    background-color: #0F2B4D;
    color: #ffffff;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 12px 28px rgba(0, 0, 0, 0.40);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.40);
}

a.button-normal.digital-channels-btn.digital-channels-btn-alt {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

a.button-normal.digital-channels-btn.digital-channels-btn-alt:hover {
    background-color: #ffffff;
    color: #0F2B4D;
    border-color: #ffffff;
    -webkit-box-shadow: 0 12px 28px rgba(0, 0, 0, 0.40);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.40);
}

@media (max-width: 991px) {
    .digital-channels-section {
        padding: 60px 0 70px;
    }
    .digital-channels-card {
        padding: 60px 36px;
        border-radius: 20px;
    }
    .digital-channels-content h2 {
        font-size: 28px;
    }
    .digital-channels-subtitle {
        font-size: 16px;
    }
    .digital-channels-dots {
        display: none;
    }
}

@media (max-width: 600px) {
    .digital-channels-section {
        padding: 40px 0 50px;
    }
    .digital-channels-card {
        padding: 50px 24px;
        border-radius: 16px;
    }
    .digital-channels-content h2 {
        font-size: 22px;
        line-height: 1.3;
    }
    .digital-channels-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }
    .digital-channels-buttons {
        gap: 12px;
    }
    a.button-normal.digital-channels-btn {
        width: 100%;
        max-width: 320px;
    }
    .digital-channels-shape-1,
    .digital-channels-shape-2 {
        opacity: 0.5;
    }
}

/*-----------------------------------------------------------------------------------*/
/*  Página 404 - Erro / Página não encontrada                                          */
/*-----------------------------------------------------------------------------------*/

.error-404 {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.error-404:before {
    content: '';
    position: absolute;
    top: -80px;
    right: -120px;
    width: 380px;
    height: 380px;
    background-image: radial-gradient(rgba(15, 43, 77, 0.10) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    z-index: 0;
}

.error-404:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -120px;
    width: 320px;
    height: 320px;
    background: -webkit-radial-gradient(circle, rgba(15, 43, 77, 0.10) 0%, rgba(15, 43, 77, 0) 70%);
    background: radial-gradient(circle, rgba(15, 43, 77, 0.10) 0%, rgba(15, 43, 77, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.error-404 .container {
    position: relative;
    z-index: 1;
}

.error-404-content {
    max-width: 760px;
    margin: 0 auto;
}

.error-404-code {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 180px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    background: -webkit-linear-gradient(135deg, #0F2B4D 0%, #1A4470 55%, #2c6cb0 100%);
    background: linear-gradient(135deg, #0F2B4D 0%, #1A4470 55%, #2c6cb0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #0F2B4D;
    text-shadow: 0 14px 40px rgba(15, 43, 77, 0.15);
}

.error-404-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0F2B4D;
    margin: 0 0 18px;
    text-transform: none;
    line-height: 1.25;
}

.error-404-content > p {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #5a6878;
    margin: 0 auto 38px;
    max-width: 580px;
}

.error-404-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 60px;
}

.error-404-actions .button-normal {
    margin-top: 0;
}

.error-404-actions .button-normal i {
    margin-right: 8px;
}

.error-404-suggestions {
    border-top: 1px solid rgba(15, 43, 77, 0.12);
    padding-top: 36px;
    margin-top: 10px;
}

.error-404-suggestions h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #0F2B4D;
    text-transform: uppercase;
    letter-spacing: 0.20em;
    margin: 0 0 22px;
}

.error-404-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
}

.error-404-suggestions ul li {
    list-style: none;
}

.error-404-suggestions ul li a {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 22px;
    background: #ffffff;
    color: #0F2B4D;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(15, 43, 77, 0.18);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.error-404-suggestions ul li a:hover {
    background: #0F2B4D;
    color: #ffffff;
    border-color: #0F2B4D;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 8px 18px rgba(15, 43, 77, 0.22);
    box-shadow: 0 8px 18px rgba(15, 43, 77, 0.22);
}

@media (max-width: 991px) {
    .error-404 {
        padding: 80px 0;
    }
    .error-404-code {
        font-size: 140px;
    }
    .error-404-content h2 {
        font-size: 26px;
    }
}

@media (max-width: 600px) {
    .error-404 {
        padding: 60px 0;
    }
    .error-404-code {
        font-size: 100px;
    }
    .error-404-content h2 {
        font-size: 22px;
    }
    .error-404-content > p {
        font-size: 15px;
    }
    .error-404-actions {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 40px;
    }
    .error-404-actions .button-normal {
        width: 100%;
        max-width: 320px;
    }
    .error-404-suggestions ul li a {
        font-size: 11px;
        padding: 8px 14px;
    }
}