/* font family Raleway */

@import url('https://fonts.googleapis.com/css2?family=Belleza&family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* font family Barlow */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* ============= 01. Reset section ============= */

html,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

button:focus {
    outline: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

select::-ms-expand {
    display: none;
}

label {
    font-weight: normal;
}

iframe {
    width: 100%;
}

/* ===== 02. Global Style ===== */
body {
    overflow-x: hidden;
}

h1 {
    font-size: 75px;
    font-weight: 800;
    line-height: 85px;
    font-family: "Raleway", sans-serif;
}

h2 {
    font-size: 45px;
    font-weight: 800;
    line-height: 51px;
    font-family: "Raleway", sans-serif;
}

h3 {  
    font-size: 22px;  
    font-weight: 800;  
    line-height: 31px;  
    font-family: "Raleway", sans-serif;  
    text-align: center; /* Adiciona esta linha para centralizar o texto */  
} 

h4 {
    font-size: 18px;
    font-weight: 800;
    line-height: 28px;
    font-family: "Raleway", sans-serif;
}

h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    font-family: "Raleway", sans-serif;
}

h6 {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    font-family: "Raleway", sans-serif;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Raleway", sans-serif;
}

button {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    padding: 16px 38px 16px 38px;
    text-transform: capitalize;
    font-family: "Raleway", sans-serif;
}

a {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    text-transform: capitalize;
    font-family: "Raleway", sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #fff;
}

.container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}



/* <!-- ====== 1.1. Header section ====== --> */

.hero {  
    position: relative;  
    overflow: hidden; /* Garante que o canvas não saía da seção */  
}  

#particles-js {  
    position: absolute;  
    top: 0;  
    left: 0;  
    width: 100%;  
    height: 100%;  
    z-index: 1; /* Coloca o canvas atrás do conteúdo */  
}

    .header-index {
        background-image: url("../Images/Emted_site/01.png");
        background-position: center center;
        background-size: cover;
    }

    header {  
        padding: 20px 0;  
        background-color: #00488E; /* Altere essa cor conforme necessário */  
        color: white; /* Cor do texto, se desejar */  
    }  

    .navbar {  
        position: relative;  
        display: flex;  
        align-items: center;  
        justify-content: space-between;  
        padding: 0.5rem 15px;  
        width: 100%; /* Garante que a navbar use 100% da largura */  
        box-sizing: border-box; /* Inclui padding na largura total */  
    }  
    
    .container-nav {  
        display: flex; /* Certifique-se de que a contêiner nav use flex */  
        gap: 70px;  
    }  
    
    /* Ajuste no logo para manter alinhamento correto em telas menores */  
    .navbar-logo {  
        margin-right: 25px;  
    }  
    
    /* Navbar links */  
    .navbar-nav {  
        display: flex; /* Alinha os links em linha */  
        gap: 50px;  
    }  
    
    .nav-link {  
        font-weight: 400;  
        color: #fff;  
    }  
    
    /* Estilização para estado ativo e hover */  
    nav li a.active,  
    .nav-link:is(:hover, :focus-visible) {  
        color: #c9c3c3;  
    }  
    
    
    /* Dropdown */  
    .dropdown {  
        position: relative;  
    }  
    
    .dropdown-toggle::after {  
        content: '+';  
        vertical-align: middle;  
        margin-left: 5px;  
    }  
    
    .dropdown-menu {  
        position: absolute;  
        padding: 30px;  
        display: none;  
        z-index: 9;  
    }  
    
    .navbar .dropdown:hover .dropdown-menu {  
        display: block;  
        width: 220px;  
        padding: 15px 0px;  
        border-radius: 10px;  
        background-color: rgba(71, 69, 71, 0.5); /* Opacidade de 50% */  
        margin-left: -52px;  
    }  
    
    .dropdown-item.active,  
    .dropdown-item:active {  
        background-color: inherit;  
    }  
    
    .dropdown-item {  
        display: block;  
        width: 100%;  
    }  
    
    .dropdown-item:focus,  
    .dropdown-item:hover {  
        color: white;  
        background-color: inherit;  
    }  
    
    .dropdown-menu li {  
        display: block;  
        position: relative;  
        overflow: hidden;  
        z-index: 1;  
        color: #ffffff;  
        width: 100%;  
        padding: 10px 20px;  
        cursor: pointer;  
    }  
    
    .dropdown-menu .dropdown-item::before {  
        content: "";  
        position: absolute;  
        width: 0;  
        height: 100%;  
        transition: all 0.3s ease-in-out;  
        background: #02417E;  
        z-index: -1;  
        top: 0;  
        left: 0;  
    }  
    
    .dropdown-menu .dropdown-item:hover::before {  
        width: 100%;  
        background: #3A7596;  
    }  
    
    /* Nav-right section styles */  
    .nav-right {  
        display: flex; /* Certifique-se de que nav-right use flex */  
        gap: 45px;  
        align-items: center;  
    }  
    
    .nav-right p:first-child,  
    .nav-right span {  
        color: #fff;  
    }  
    
    .nav-right .fa-magnifying-glass,  
    .nav-right .fa-bars {  
        color: #ffffff;  
        font-size: 22px;  
        cursor: pointer;  
    }  
    
    .nav-right .fa-magnifying-glass:active,  
    .nav-right .fa-bars:active {  
        transform: scale(0.8); /* Animação de clique */  
    }  
    
    /* Navbar toggler */  
    .navbar-toggler {  
        border: 1px solid #fff;  
        background: linear-gradient(42deg, #c9c3c3 0.01%, #c9c3c3 100%);  
        padding: 10px 20px;  
        border-radius: 6px;  
        cursor: pointer;  
        display: none;  
    }  
    
    .navbar-toggler:hover {  
        background: inherit;  
    }  
    
    .navbar-toggler span {  
        color: #ffffff;  
        font-size: 22px;  
    }  
    
    /* Media Queries para responsividade */  
    @media screen and (max-width: 1000px) {  
        .navbar-toggler {  
            display: block !important; /* Exibe o botão no mobile */  
        }  
    
        .navbar-nav,  
        .nav-right {  
            display: none !important; /* Oculta nav e itens na tela menor */  
        }  
    
        .container-nav {  
            width: 100%;  
            justify-content: space-between;  
        }  
    
        .navbar {  
            flex-direction: column; /* Alinha itens em coluna */  
        }  
    
        .nav-right {  
            justify-content: space-between; /* Espaça itens horizontalmente */  
            width: 100%; /* Garante que ocupa toda a largura */  
        }  
    }

/* Sidebar */

aside {
    background-color: #3d0f41;
    z-index: 10;
}

.sidepanel {
    width: 320px;
    position: fixed;
    height: 100vh;
    top: 0;
    left: -320px;
    overflow-x: hidden;
    transition: 0.5s;
    padding: 40px 20px 20px 20px;
}

.sidepanel::-webkit-scrollbar {
    width: 3px;
}

.sidepanel::-webkit-scrollbar-thumb {
    background: linear-gradient(42deg, #c9c3c3 0.01%, #c9c3c3 100%);
    border-radius: 10px;
}

.sidebar {
    justify-content: space-between;
    padding-bottom: 20px;
}

.sidebar img {
    width: 100px;
}

.sidebar button {
    width: 44px;
    height: 44px;
    background: linear-gradient(42deg, #c9c3c3 0.01%, #c9c3c3 100%);
    padding: 10px 12px 10px 12px;
    margin-bottom: -15px;
    border-radius: 0.25em;
    border: 1.5px solid #fff;
    color: #ffffff;
    cursor: pointer;
}

.btn_hover1 {
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1.5px solid #fff;
    color: #fff;
    z-index: 1;
    letter-spacing: 0.8px;
    background: linear-gradient(180deg, #0878C4 0%, #0878C4 100%);
    cursor: pointer;
}

.btn_hover1::before {
    border-radius: 10px;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in;
    background: linear-gradient(42deg, #32aadd 0.01%, #0878C4 100%);
    z-index: -1;
    top: 0;
    right: 0;
}

.btn_hover1:hover::before {
    width: 0;
    background: linear-gradient(42deg, #32aadd 0.01%, #0878C4 100%);
}

.sidebar button:hover {
    background: inherit;
}

.sidebar a {
    padding: 10px 0;
}

aside ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
}

aside ul li {
    margin: 15px 0;
}

aside li a {
    color: #d3c9c1;
    transition: 500ms;
    padding: 10px 0;
}

aside ul li a.active {
    color: #fff;
}

aside li a:hover {
    color: #fff;
    transition: 500ms;
}

aside .pages {
    font-weight: 500;
    color: #d3c9c1;
    margin: 11px 0 7px 0;
}

.collapse_btn {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.collapse_btn i {
    border: 1px solid #d3c9c1;
    padding: 7px 8px;
    border-radius: 40px;
}

.collapse_btn i:hover {
    border: 1px solid #ffff;
}

.plus_collapse {
    margin: -52px 0px 0 0;
    height: 45px;
}

#pages {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

.show {
    height: 500px !important;
    transition: height 0.35s ease;
}

/* searchbar */

#search-bar {
    background-color: #000000a6;
    width: 100%;
    height: 0;
    border-radius: 0px;
    bottom: 0;
    z-index: 2;
    transition: all 0.5s ease;
    position: fixed;
    display: flex;
}

#search-bar div:first-child {
    position: absolute;
    width: 44px;
    height: 44px;
    right: 0;
    background: linear-gradient(42deg, #c9c3c3 0.01%, #c9c3c3 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.25em;
    border: 1.5px solid #fff;
    color: #ffffff;
    margin: 30px;
    cursor: pointer;
}

#search-bar div:first-child:hover {
    background: inherit;
}

#search-bar form {
    border-radius: 10px;
    border: 1px solid #fff;
    background: #E6E3E3;
    width: 50%;
    margin: auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

#search-bar form input {
    border-radius: 10px;
    background: #E6E3E3;
    border: none;
    outline: none;
    padding: 10px 20px;
    color: #757575;
    font-size: 18px;
    width: 100%;
}

#search-bar form button {
    transition: all 0.3s ease;
    text-transform: uppercase;
}

/* header right sidebar */

.header-right-sidebar {
    width: 355px;
    position: fixed;
    height: 100vh;
    top: 0;
    right: 0;
    right: -355px;
    overflow-x: hidden;
    transition: 0.5s;
    padding: 60px 25px 20px 30px;
    z-index: 2;
    background: #d3c9c1;
}

.header-right-sidebar img {
    width: 100px;
}

.header-right-sidebar button {
    width: 44px;
    height: 44px;
    background: linear-gradient(42deg, #c9c3c3 0.01%, #c9c3c3 100%);
    padding: 7px 12px 10px 12px;
    border-radius: 0.25em;
    border: 1.5px solid #fff;
    color: #ffffff;
    cursor: pointer;
}

.header-right-sidebar button:hover {
    background: linear-gradient(180deg, #fff 0%, #c9c3c3 100%);
}

.header-right-sidebar p {
    color: #231f20;
    margin: 25px 0;
}

.header-right-sidebar h4 {
    margin: 25px 0;
}

.header-right-sidebar hr {
    margin: 28px 0 0 0;
    border: 1px solid;
    opacity: 1;
    color: #000000;
}

.header-right-sidebar .btn_hover1 {
    padding: 15px 40px;
    outline: none;
    font-size: 16px;
}

.header-right-sidebar ul {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
}

.header-right-sidebar ul li {
    display: flex;
    gap: 20px;
}

.header-right-sidebar ul a {
    padding: 0 !important;
    color: #231f20;
}

.header-right-sidebar i {
    font-size: 20px;
    background: linear-gradient(0deg, #17E2F4 0.5%, #17E2F4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-right-sidebar i:hover {
    background: linear-gradient(0deg, #2498a2 0.5%, #69d7e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-right-sidebar span {
    gap: 20px;
    margin-top: 30px;
}

/* ====== End of 1.1. Header section ====== */

/* ====== 1.2. hero section ====== */

.hero {
    background-image: url("../Images/Emted_site/");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 172px 0 279px 0;
}

.hero .container {
  
    position: relative;
}

.hero h1 {  
    color: #ffffff;  
    letter-spacing: 3.75px;  
    text-transform: uppercase;  
    margin-top: 13vh; /* 10% da altura da viewport */  
}  

.hero-social-icon {
    position: absolute;
    left: 0;
    top: 0;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

.hero-social-icon a {
    padding: 16px 38px 16px 38px !important;
}

.hero-social-icon i {
    font-size: 26px;
    background: linear-gradient(0deg, #17E2F4 0.5%, #17E2F4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
iframe {  
    margin: 0; /* Remove margens */  
    padding: 0; /* Remove paddings se houver */  
    border: none; /* Remove bordas, se necessário */  
    display: block; /* Garante que o iframe se comporte como um bloco */  
}  

.hero-social-icon i:hover {
    background: linear-gradient(0deg, #2498a2 0.5%, #69d7e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-social-icon hr {
    display: block;
    margin-top: 68px;
    opacity: 1;
    color: #ffffff;
    width: 110px;
    rotate: 90deg;
}

.center-btn {  
    display: flex;  
    flex-direction: column; /* Empilha os itens verticalmente */  
    align-items: center; /* Centraliza os itens */  
}  

.center-btn a {  
    width: 100%; /* O botão ocupará 100% da largura do seu contêiner pai */  
    margin-bottom: 10px; /* Espaçamento entre os botões, ajuste conforme necessário */  
}  

@media (min-width: 600px) { /* Adicione essa regra para telas maiores */  
    .center-btn {  
        flex-direction: row; /* Alinha os itens horizontalmente em telas maiores */  
    }  
    
    .center-btn a {  
        width: auto; /* O botão terá largura automática em telas maiores */  
        margin-bottom: 0; /* Remove o espaçamento inferior em telas maiores */  
        margin-right: 10px; /* Espaçamento entre os botões na horizontal */  
    }  
}  

.center-data {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 120px 50px 20px 10px; /* Topo, Direita, Fundo, Esquerda */
    /* Exemplo: 100px no topo, 50px à direita, 20px embaixo, 10px à esquerda */
}

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

.center-btn {
    gap: 1.5rem;
    margin-top: 1rem;
}

/* button hover with background */

.btn_hover2 {
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1.5px solid #fff;
    color: #fff;
    z-index: 1;
    letter-spacing: 0.8px;
}

.btn_hover2::before {
    content: "";
    border-radius: 10px;
    position: absolute;
    width: 0;
    height: 100%;
    transition: all 0.3s ease-in;
    background: linear-gradient(180deg, #0878C4 0%, #0878C4 100%);
    z-index: -1;
    top: 0;
    left: 0;
}

.btn_hover2:hover::before {
    width: 100%;
    border-radius: 10px;
    background: linear-gradient(42deg, #32aadd 0.01%, #0878C4 100%);
}

/* button hover end */

.center-btn a {
    padding: 16px 38px 16px 38px !important;
}

/* ====== End of 1.2. hero section ====== */

/* ====== 1.3. card section ====== */

.feature {
    background-color: #013871;
    margin-top: -1px;
    position: relative;
}

.feature .flex {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
}

.header-card {
    margin-top: -145px;
    display: flex;
    flex: 0 0 auto;
    width: 25%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

.header-card div {  
    border-radius: 20px;  
    background: linear-gradient(0deg, #013871 0%, #0058A8 50%, #410085 100%);  
    color: #ffffff;  
    padding: 40px 30px;  
    transition: all 0.4s ease;  
    display: flex; /* Adiciona Flexbox */  
    flex-direction: column; /* Organiza os filhos em coluna */  
    align-items: center; /* Centraliza no eixo transversal (horizontalmente) */  
    text-align: center; /* Centraliza o texto */  
}

.header-card div:hover {
    transform: scale(1.05);
    transition: all 0.4s ease;
}

.header-card .feature-img1 {
    width: 50px;

}

.header-card img {
    width: 60px;
    display: block; /* Para tratar como um bloco */  
    margin: 0 auto; /* Centraliza a imagem */  
}

.header-card h5 {
    width: 146px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    margin: 20px 0 12px 0;
}

/* ====== End of 1.3. card section ====== */

/* ====== 1.4. logoipsum section ====== */

.logoipsum {
    background: linear-gradient(0deg, #013871 20%, #0058A8 50% );
    padding: 60px 0;
    margin-top: -1px;
}

.logoipsum-slider {
    margin-top: 24px;
}

.logoipsum h3 {
    letter-spacing: 1.25px;
    color: #ffffff;
    text-transform: uppercase;
}

.logoipsum img {
    width: 170px;
    margin: 0 auto;
}

.logoipsum .hr1 {
    opacity: 1;
    height: 2px;
    rotate: 90deg;
    width: 60px;
    margin: 0 auto 50px auto;
    background: rgba(255, 255, 255, 0.75);
}

.logoipsum .hr2 {
    opacity: 1;
    height: 2px;
    rotate: 90deg;
    width: 60px;
    margin: 70px auto 0 auto;
    background: rgba(255, 255, 255, 0.75);
}


/**********************************/
/********** carousel Parceiros ou clientes ***********/
/**********************************/



@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: rgb(255, 255, 255);
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 25s slide infinite linear;
}

.logos-slide img {
  height: 180px;
  margin: 0 60px;
}

/* ====== End of 1.4. logoipsum section ====== */

/* ====== 1.5. About us section ====== */

.about {
    background: #fff;
    padding: 100px 0;
}

.about-data {
    display: flex;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.about hr {
    opacity: 1.25;
    height: 1px;
    color: #00519C;
    width: 60px;
    border: 1px solid;
}

.w-50 {
    flex: 0 0 auto;
    width: 50%;
}

.about-title {
    gap: 1rem;
}

.about-data h2 {
    margin: 20px 0;
    color: #00519C;
}
.about-data .cors2 {
    
    color: #fff;
}
.about-data .cors {
    margin: 20px 0;
    color: #00519C;
}

.about h5 {
    color: #00519C;
    font-weight: 400;
    font-family: "Barlow", sans-serif;
}
.about .cors1 {
    color: #fff;
    font-weight: 400;
    font-family: "Barlow", sans-serif;
}
.about.cors1 {
    color: #fff;
    font-weight: 400;
    font-family: "Barlow", sans-serif;
}

.about p {
    color: #fff;
}

.about i {
    border: 2px solid #00519C;
    border-radius: 10%;
    padding: 3px;
    font-size: 20px;
    background: linear-gradient(66.75deg, #c9c3c3 0.87%, #c9c3c3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-data a {
    padding: 16px 38px 16px 38px !important;
}

.mt-15 {
    margin-top: 1.5rem !important;
}

.mt-30 {
    margin-top: 3rem !important;
}

.about-imgs {
    position: relative;
    background-image: url("../Images/Emted_site/about-bg_35.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.about-imgs figure {
    background: linear-gradient(42deg, #fff 0.01%, #0058A8 100%);
    width: fit-content;
    clip-path: circle(45% at 50% 50%);
    transition: all 0.8s ease;
}

.about-imgs figure:hover {
    transform: scale(1.05);
    transition: all 0.8s ease;
}

.about-imgs img {
    width: 85%;
    display: block;
    margin: auto;
    clip-path: circle(48% at 50% 50%);
}

.ab-count {
    flex-direction: column;
    text-align: center;
    background: linear-gradient(180deg, #0058A8 0%, #013871 100%);
    color: #00519C;
    position: absolute;
    bottom: -18px;
    left: 118px;
    z-index: 11;
    border-radius: 50%;
    width: 175px;
    height: 175px;
}

.ab-count h2 {
    margin: 0;
}

.about-hr {
    color: #00519C;
    position: absolute;
    right: -50px;
    bottom: 25px;
    rotate: -90deg;
}

.about-hr hr {
    opacity: 1.25;
    height: 1px;
    color: #00519C;
    width: 60px;
    border: 1px solid;
}

.ab-count p {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.about-hr h6 {
    letter-spacing: 3.72px;
    text-transform: uppercase;
}

/* ====== End of 1.5. Corpo Administrativo ====== */

.adm {
    background: #fff;
    padding: 100px 0;
}

.about-data {
    display: flex;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.adm hr {
    opacity: 1.25;
    height: 1px;
    color: #00519C;
    width: 60px;
    border: 1px solid;
}

.w-50 {
    flex: 0 0 auto;
    width: 50%;
}

.about-title {
    gap: 1rem;
}

.about-data h2 {
    margin: 20px 0;
    color: #00519C;
}
.about-data .cors2 {
    
    color: #fff;
}
.about-data .cors {
    margin: 20px 0;
    color: #00519C;
}

.adm h5 {
    color: #00519C;
    font-weight: 400;
    font-family: "Barlow", sans-serif;
}
.adm .cors1 {
    color: #fff;
    font-weight: 400;
    font-family: "Barlow", sans-serif;
}
.adm .cors1 {
    color: #fff;
    font-weight: 400;
    font-family: "Barlow", sans-serif;
}

.adm p {
    color: #fff;
}

.adm i {
    border: 2px solid #00519C;
    border-radius: 10%;
    padding: 3px;
    font-size: 20px;
    background: linear-gradient(66.75deg, #c9c3c3 0.87%, #c9c3c3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-data a {
    padding: 16px 38px 16px 38px !important;
}

.mt-15 {
    margin-top: 1.5rem !important;
}

.mt-30 {
    margin-top: 3rem !important;
}

.about-imgs {
    position: relative;
    background-image: url("../Images/Emted_site/about-bg_35.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.about-imgs figure {
    background: linear-gradient(42deg, #fff 0.01%, #0058A8 100%);
    width: fit-content;
    clip-path: circle(45% at 50% 50%);
    transition: all 0.8s ease;
}

.about-imgs figure:hover {
    transform: scale(1.05);
    transition: all 0.8s ease;
}

.about-imgs img {
    width: 85%;
    display: block;
    margin: auto;
    clip-path: circle(48% at 50% 50%);
}

.ab-count {
    flex-direction: column;
    text-align: center;
    background: linear-gradient(180deg, #0058A8 0%, #013871 100%);
    color: #00519C;
    position: absolute;
    bottom: -18px;
    left: 118px;
    z-index: 11;
    border-radius: 50%;
    width: 175px;
    height: 175px;
}

.ab-count h2 {
    margin: 0;
}

.about-hr {
    color: #00519C;
    position: absolute;
    right: -50px;
    bottom: 25px;
    rotate: -90deg;
}

.about-hr hr {
    opacity: 1.25;
    height: 1px;
    color: #00519C;
    width: 60px;
    border: 1px solid;
}

.ab-count p {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.about-hr h6 {
    letter-spacing: 3.72px;
    text-transform: uppercase;
}
/* ====== 1.6. gallary section ====== */

.portfolio-1 {
    background: #003C78;
    padding: 120px 0 120px 0;
    margin-top: -1px;
}


.portfo-center {
    display: flex;
    text-align: left;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.portfo-center .w-50 {
    width: 66.66666667%;
}


.portfolio-1 h5 {
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-1 h2 {
    color: #ffffff;
}

.portfolio-1 p {
    color: #fff;
    padding-right: 145px;
    margin-top: 1rem;
}

.portfolio-1 .gallary-hr1 {
    opacity: 1.25;
    height: 1px;
    color: #fff;
    width: 60px;
    border: 1px solid;
}

.portfo-center hr {
    width: 100%;
    opacity: 1.25;
    height: 1px;
    color: #fff;
    border: 1px solid;
}


.portfolio-1 .btn_hover2 {
    padding: 15px 30px;
    border: 1px solid #fff;
}

.portfo-center .w-100 {
    flex: 0 0 auto;
    width: 33.33333333%;
}
/* ====== End of 1.6. gallary section ====== */

/* gallary */
.gallary {  
    background-image: url("../Images/bg/gallary-bg.pn");  
    background-size: 100% 100%;  
    background-repeat: no-repeat;  
    padding-bottom: 120px;  
    position: relative;  
    z-index: 1;  
}  

.gallary img {  
    max-width: 100%;   
    height: auto;  
    object-fit: cover;  
}  

.gallary img[alt="sm_img"] {  
    height: 200px;  
}  

.ga-bg {  
    background-color: #fff;  
    height: 300px;  
}  

.gallary span {  
    background-color: #fff;  
    opacity: 0.8;  
    width: 100% !important;  
    height: 100%;  
    position: absolute;  
    top: 0;  
    z-index: -1;  
}  

.gallary .container {  
    margin-top: -390px;  
    z-index: 1;  
    position: relative;  
}  

.tab {  
    overflow: hidden;  
    display: flex;  
    flex-wrap: wrap;  
}  

.mb-15 {  
    margin-bottom: 1.5rem !important;  
}  

.tab button {  
    float: left;  
    border: none;  
    outline: none;  
    cursor: pointer;  
    transition: 0.3s;  
    background-color: inherit;  
    color: #ffffff;  
    border-radius: 10px;  
}  

.tab button.active {  
    background: linear-gradient(11deg, #00519C 0.01%, #17E2F4 100%);  
}  

.gallary-hr h6 {  
    letter-spacing: 3.72px;  
    text-transform: uppercase;  
    color: #00519C;  
}  

.gallary-hr hr {  
    opacity: 1;  
    color: #00519C;  
    height: 2px;  
    width: 60px;  
}  

.tabcontent {  
    display: none;   
    padding: 6px 12px;  
}  

.tabcontent .w-100 {  
    display: flex;  
    flex-wrap: wrap;  
    align-items: center;  
    justify-content: center;  
}  

.w-33 {  
    width: 33.33%;  
}  

.w-66 {  
    width: 66.66666667%;  
}  

.gallary figure {  
    text-align: center;   
}  

.gallary figcaption {  
    margin-top: -40px; /* Opcional: ajuste a margem superior conforme necessário */  
}  

.gallary figcaption a {  
    color: #00519C; /* Cor inicial do texto do link */  
    font-weight: bold; /* Deixe o texto em negrito */  
    text-decoration: none; /* Remove o sublinhado do link */  
}  

.gallary figcaption a:hover {  
    color: #000; /* Cor ao passar o mouse */  
}

/* Estilos para telas menores que 768px */  
@media (max-width: 768px) {  
    .portfo-center .w-50, .portfo-center .w-100 {  
        width: 100%; /* Muda para 100% em telas pequenas */  
    }  
    
    .portfolio-1 {  
        padding: 60px 0; /* Reduz o padding em telas pequenas */  
    }  

    .portfolio-1 p {  
        padding-right: 20px; /* Ajusta o padding do parágrafo */  
    }  

    .gallary {  
        padding-bottom: 60px; /* Reduz o padding inferior */  
    }  

    .gallary img[alt="sm_img"] {  
        height: auto; /* Mantém a proporção da imagem */  
    }  
}  

/* Estilos para telas entre 768px e 1024px */  
@media (min-width: 768px) and (max-width: 1024px) {  
    .portfo-center .w-50 {  
        width: 50%; /* 50% para telas médias */  
    }  

    .portfolio-1 {  
        padding: 100px 0; /* Ajuste do padding */  
    }  
}


/* ====== 1.7. Services section ====== */

.service-1 {
    background: linear-gradient(to right, #003C78,#f2f0f0 ); /* Gradiente de branco para azul */  
    padding: 120px 0;
}


.ass{
    font-family: 'Pacifico', cursive; /* Aplica a fonte de assinatura */  
    font-size: 8px; /* Ajuste o tamanho conforme necessário */  
}
.service-data {
    display: flex;
    flex-wrap: wrap;
}

.service-1 h5 {
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-1 h2 {
    color: #ffffff;
}

.service-1 .col-lg-8 p {
    padding: 0 221px 0 0;
}

.service-1 p {
    color: #fff;
    position: relative;
    margin-bottom: 15px;
}

.service-1 .service-hr1 {
    opacity: 1.25;
    height: 1px;
    color: #fff;
    width: 60px;
    border: 1px solid;
}

.service-1 hr {
    width: 100%;
    opacity: 1.25;
    height: 1px;
    color: #fff;
    border: 1px solid;
}

.service-1 .btn_hover2 {
    padding: 15px 30px;
    border: 1px solid #fff;
}

.service-card {
    
    background: linear-gradient(11deg, #003C78 0.01%, #0058A8 100%);
    box-shadow: 8px 18px 30px 0px rgba(0, 0, 0, 0.2);
    padding: 40px 40px 30px 40px;
    width: 100%;
    border-radius: 10px;
}

.service-card:hover {
    transform: scale(1.05) !important;
    transition: all 0.4s ease !important;
}

.service-card a {
    color: #d3c9c1;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-card a:hover {
    font-weight: 700;
    color: #ffffff;
    gap: 8px;
}

.service-card h3 {
    margin: 20px 0;
    color: #ffffff;
    letter-spacing: 1.25px;
}

.service-card {  
    display: flex; /* Usa flexbox no container */  
    flex-direction: column; /* Alinha os filhos em coluna (verticalmente) */  
    align-items: center; /* Centraliza horizontalmente */  
  
}  

.service-card figure {  
    background: #ffffff;  
    box-shadow: 10px 17px 28px 0px rgba(0, 0, 0, 0.3);  
    border-radius: 10px;  
    padding: 12px;  
    width: 124px;  
    height: 100px;  
    display: flex;  
    justify-content: center; /* Centraliza o conteúdo do figure (como a imagem) horizontalmente */  
    
}  

.service-card img {  
    object-fit: cover;  
    display: block;  
    max-width: 100%; /* Garante que a imagem não exceda a largura do figure */  
    max-height: 100%; /* Garante que a imagem não exceda a altura do figure */  
}

.service-card img[alt="slider1"] {
    width: 105px;
}

.service-card img[alt="slider2"] {
    width: 75px;
}

.service-card img[alt="slider3"] {
    width: 60px;
}

/* ====== End of 1.7. Services section ====== */

/* ====== 1.8. Experience section ====== */

.experience {
    background-image: url("../Images/Emted_site/experience_bg_fm.png");
    background-size: cover;
    background-position: center center;
    padding: 120px 0;
    position: relative;
    margin-top: -1px;
}

.experience::before {
    position: absolute;
    content: "";
    top: 26rem;
    background-image: url("../Images/Emted_site/experience_cercle_01.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 30%;
    height: 39%;
    left: 32%;
}

.experience h5 {
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.experience h2 {
    color: #ffffff;
}

.experience p {
    color: #fff;
}

.experience .col-lg-8 p {
    padding: 0 221px 0 0;
}

.experience .experience-hr1 {
    opacity: 1.25;
    height: 1px;
    color: #fff;
    width: 60px;
    border: 1px solid;
}

.experience hr {
    width: 100%;
    opacity: 1.25;
    height: 1px;
    color: #fff;
    border: 1px solid;
    margin: 35px 0;
}

.experience .btn_hover1 {
    padding: 15px 40px;
}

.experience .btn_hover2 {
    padding: 15px 30px;
    border: 1px solid #fff;
}

.experience .col-lg-6 {
    z-index: 1;
}

.experience_mask figure {
    width: fit-content;
    clip-path: circle(47% at 50% 50%);
    padding: 6px;
    background: linear-gradient(11deg, #0058A8 0.01%, #fff 100%);
    
    transition: all 0.8s ease;
}

.experience_mask figure:hover {
    transform: scale(1.05);
    transition: all 0.8s ease;
}

.experience_mask img {
    width: 100%;
    clip-path: circle(47% at 50% 50%);
}

.experience-hr {
    color: #ffffff;
    position: absolute;
    bottom: -220px;
    left: -45px;
    bottom: 25px;
    rotate: -90deg;
}

.experience-hr h6 {
    letter-spacing: 3.72px;
    text-transform: uppercase;
}

.experience-hr hr {
    opacity: 1.25;
    height: 1px;
    color: #ffffffbf;
    width: 60px;
    border: 1px solid;
    margin: 0;
}


.ex-card1 {
    border-radius: 10px;
    background: linear-gradient(0deg, #013871 0%, #0058A8 50% );  
    box-shadow: 0px 23px 30px 0px rgba(0, 0, 0, 0.15);
    padding: 20px 20px 20px 20px;
    z-index: 1;
}
.ex-card {
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0px 23px 30px 0px rgba(0, 0, 0, 0.15);
    padding: 20px 20px 20px 20px;
    z-index: 1;
}

.ex-card:hover {
    background: linear-gradient(180deg, #0058A8 0%, #013871 100%);
   
    transform: scale(1.05) !important;
    transition: all 0.4s ease !important;
}

.ex-card:hover h4 {
    color: #ffffff;
}

.ex-card:hover p {
    color: #ffffff;
}

.ex-card .flex {
    border-radius: 50%;
    background: linear-gradient(180deg, #0058A8 0%, #013871 100%);
    color: #ffffff;
    width: 115px;
    padding: 29px 0px;
}

.ex-card:hover.ex-card .flex {
    background: #ffffff;
}

.ex-card:hover.ex-card h3 {
    color: #0058A8 !important;
}

.ex-card div:last-child {
    width: 100%;
}

.ex-card h4 {
    color: #231f20;
}

.ex-card p {
    color: #767676;
    margin-top: 10px;
}

/* ====== End of 1.8. Experience section ====== */

/* ====== 1.9. How we work section ====== */

.work {
    background-image: url("../Images/Para_site/t_x.png");
    background-size: cover;
    background-position: center center;
    padding: 120px 0;
    margin-top: -2px;
}

.work h5 {
    letter-spacing: 1px;
}

.work-para {
    color: #ffffff;
    padding: 0 290px;
}

.work-line {
    background-image: url("../Images/bg/work-line.p");
    background-size: 100% 100%;
    background-position: center;
    min-height: 242px;
    background-repeat: no-repeat;
    margin: 146px 25px 146px 25px;
}

.work-line div {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(11deg, #003C78 0.01%, #0058A8 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 18px 0 32px 34px;
}

.work-line div:first-child {
    top: -66px;
    left: -30px;
    width: 196px;
    min-height: 196px;
}

.work-line div:nth-child(2) {
    bottom: -70px;
    left: 260px;
    width: 180px;
    min-height: 180px;
}

.work-line div:nth-child(3) {
    right: 260px;
    top: -66px;
    width: 196px;
    min-height: 196px;
}

.work-line div:last-child {
    right: -49px;
    bottom: -70px;
    width: 180px;
    min-height: 180px;
}

.work a {
    border: 1.5px solid #fff;
}

.work-hr {
    color: #ffffff;
    position: absolute;
    right: 0;
    rotate: -90deg;
}

.work-hr h6 {
    letter-spacing: 3.72px;
    text-transform: uppercase;
}

.work-hr hr {
    opacity: 1.25;
    height: 1px;
    color: #ffffffbf;
    width: 60px;
    border: 1px solid;
}

.work .btn_hover2 {
    padding: 15px 30px;
}


/* ====== End of 1.9. Testimonials section ====== */

/* ====== 1.10. team section ====== */

.team {
    background-image: url("../Images/Emted_site/experience_bg_fm.png");
    background-size: cover;
    background-position: center center;
    padding: 120px 0 0 0;
}

#team {
    background-image: url("../Images/Emted_site/experience_bg_fm.png");
    background-size: cover;
    background-position: center center;
    padding: 120px 0 120px 0;
}

.team h5 {
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.team h2 {
    color: #ffffff;
    padding: 0 212px 0 0;
}

.team p {
    color: #d3c9c1;
    padding: 0 184px 0 0;
}

.team .team-hr1 {
    opacity: 1.25;
    height: 1px;
    color: #fff;
    width: 60px;
    border: 1px solid;
}

.team a {
    padding: 15px 30px;
    border: 1.5px solid #fff;
}

.team-slider {
    overflow: hidden;
    display: flex;
}

.team-img {
    min-width: 304px;
    object-fit: cover;
    position: relative;
    background-repeat: no-repeat;
}

.team-img img {
    width: 100%;
    object-fit: cover;
    background-repeat: no-repeat;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #7436bb66 28%, #2677b878 68%);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.5s ease;
}

.team-img:hover .overlay {
    height: 100%;
}

.overlay_text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
}

.overlay_text h4 {
    margin: 6px 0 15px 0;
}

.overlay_text i {
    color: #ffffff;
    font-size: 20px;
}

.overlay_text a {
    border: 1px solid #ffffff;
    border-radius: 10%;
}

.overlay_text a:hover {
    background-color: #ffffff;
}

.overlay_text a:hover i {
    color: #150725;
}

.overlay_text .flex a:first-child {
    padding: 8px 13px !important;
}

.overlay_text .flex a:nth-child(2) {
    padding: 9px 12px !important;
}

.overlay_text .flex a:last-child {
    padding: 8px 10px !important;
}

.team-btn {
    background: linear-gradient(180deg, #0058A8 0%, #013871 100%);
 
    color: #fff;
    padding: 40px 20px;
    margin-top: 90px;
    text-transform: uppercase;
}

/* ====== End of 1.10. team section ====== */

/* ====== 1.11. Pricing section ====== */

.pricing {
    padding: 120px 0;
    background-image: url("../Images/bg/pricing-bg.png");
    background-size: cover;
    background-position: center center;
    color: #ffffff;
    z-index: 1;
}

#pricing {
    background: #252007;
    padding: 120px 0;
}

.pricing span {
    background-color: #0057A6;
    opacity: 0.9;
    width: 100% !important;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
}

.pricing-hr {
    color: #ffffff;
    position: absolute;
    right: 0;
    rotate: -90deg;
}

.pricing-hr h6 {
    letter-spacing: 3.72px;
    text-transform: uppercase;
}

.pricing-hr hr {
    opacity: 1.25;
    height: 1px;
    color: #ffffffbf;
    width: 60px;
    border: 1px solid;
}

.pricing p {
    padding: 0 30px;
}

.pricing-card div {
    background: linear-gradient(180deg, #013871 0%, #013871 100%);
    color: #ffffff;
    padding: 70px;
    transition: all 0.4s ease;
    width: 100%;
    border-radius: 8px;
}

.pricing-card div:hover {
    transform: scale(1.07) !important;
    transition: all 0.4s ease !important;
    z-index: 3;
}

.pricing-card div:nth-child(2) {
    transform: scale(1.09);
    z-index: 2;
    background: linear-gradient(180deg, #013871 0%, #013871 100%);
}

.pricing-card div:nth-child(2):hover {
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card h3 {
    color: #17E2F4;
}

.pricing-card h2 {
    margin-bottom: 30px;
}

.pricing-card div:nth-child(2) a {
    background-color: #ffffff;
    color: #fff;
}

.pricing-card div:nth-child(2) a:hover {
    color: #ffffff;
}

.pricing-card a {
    padding: 15px 30px;
    margin-top: 20px;
}

/* ====== End of 1.11. Pricing section ====== */


/* ====== 1.12. FAQ section ====== */

.faq {
    background-image: url("../Images/bg/duvdas.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    z-index: 1;
}

#faq {
    background: #150725;
    padding: 120px 0;
}

.faq span {
    background-color: #000000;
    opacity: 0.6;
    width: 100% !important;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
}

.faq .text-center h2 {
    color: #ffffff;
    padding: 0 55px 0 0;
    text-align: left;
}

.faq h5 {
    color: #ffffff;
}

.faq .text-center p {
    color: #ffffff;
    padding: 0 123px 0 0;
    text-align: left;
}

.faq .faq-hr1 {
    opacity: 1.25;
    height: 1px;
    color: #fff;
    width: 60px;
    border: 1px solid;
}

.accordion-button {
    position: relative;
    width: 100%;
    text-align: left;
    outline: none;
    border: none;
    color: #231f20;
    font-weight: 700 !important;
    padding: 1rem 1.5rem;
    cursor: pointer;
}

.accordion-button img {
    transition: transform 0.3s ease-in-out;
}

.accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-collapse p {
    color: #fff;
    padding: 15px;
    background-color: #fff;
}

/* ====== End of 1.12. FAQ section ====== */

/* ====== 1.13. Blogs section ====== */

.blog {
    background: #00519C;
    padding: 120px 0;
}

.blog h5 {
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog h2 {
    color: #fff;
}

.blog p {
    color: #fff;
    padding: 0 296px 0 0;
}

.blog .blog-hr1 {
    opacity: 1.25;
    height: 1px;
    color: #fff;
    width: 60px;
    border: 1px solid;
}

.blog .btn_hover2 {
    padding: 15px 30px;
    border: 1.5px solid #fff;
}

.blog .row a {
    border: 1.5px solid #fff;
    justify-content: center;
}

.blog-card {
    flex: 0 0 33.33%;
    overflow: hidden;
    padding-bottom: 20px;
}

.blog-card img {
    width: 100%;
    transition: all 0.4s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
    opacity: .8;
    transition: all 0.4s ease;
}

.blog-card h4 {
    color: #fff;
    margin: 18px 0;
    padding: 0 30px 0 0;
}

.blog-card a {
    padding: 0 0 11px 0 !important;
    border-bottom: 2px solid #fff;
    letter-spacing: 2px;
    background: linear-gradient(66.75deg, #fff 0.87%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ====== 1.13. Empreender  ====== */
.enpreender {  
    background: #fff;  
    padding: 120px 0;  
}  

.enpreender h5 {  
    color: #00519C;  
    letter-spacing: 1px;  
    text-transform: uppercase;  
}  

.enpreender h2 {  
    color: #00519C;  
}  

.enpreender p {  
    color: #00519C;  
    padding: 0 296px 0 0; /* Pode ser ajustado para responsividade */  
}  

.enpreender .enpreender-hr1 {  
    opacity: 1.25;  
    height: 1px;  
    color: #00519C;  
    width: 60px;  
    border: 1px solid;  
}  

.enpreender .btn_hover2 {  
    padding: 15px 30px;  
    border: 1.5px solid #fff;  
}  

.row {  
    display: flex;  
    flex-wrap: wrap;  
    justify-content: center;  
}  

.enpreender-card {  
    flex: 0 0 23%; /* 4 cards em uma linha */  
    overflow: hidden;  
    padding-bottom: 20px;  
    
}  

/* Estilização para imagens de cards */  
.enpreender-card img {  
    width: 100%;  
    transition: all 0.4s ease;  
}  

/* Efeito ao passar o mouse sobre as imagens */  
.enpreender-card:hover img {  
    transform: scale(1.05);  
    opacity: .8;  
    transition: all 0.4s ease;  
}  

/* Estilização dos títulos dos cards */  
.enpreender-card h4 {  
    color: #00519C;  
    margin: 18px 0;  
    padding: 0 30px 0 0;  
}  

/* Estilização dos links dentro dos cards */  
.enpreender-card a {  
    padding: 30px ; /* Aumenta o padding superior para 30px */  
    letter-spacing: 2px;  
    background: linear-gradient(66.75deg, #00519C 0.87%, #00519C 100%);  
    -webkit-background-clip: text;  
    -webkit-text-fill-color: transparent;  
    text-decoration: none; /* Remove o sublinhado padrão do link */  
}  

.enpreender-card .card-body {  
    text-align: center; /* Centraliza o texto dentro do card */  
} 

/* Media queries para responsividade */  
@media (max-width: 1200px) {  
    .enpreender-card {  
        flex: 0 0 33.33%; /* 3 cards em uma linha */  
    }  
}  

@media (max-width: 992px) {  
    .enpreender-card {  
        flex: 0 0 50%; /* 2 cards em uma linha */  
    }  
}  

@media (max-width: 768px) {  
    .enpreender-card {  
        flex: 0 0 100%; /* 1 card em uma linha */  
    }  
}  

@media (max-width: 576px) {  
    .enpreender p {  
        padding: 0 20px; /* Ajuste de padding em telas menores */  
    }  

    .enpreender-card h4 {  
        padding: 0 10px; /* Ajuste de padding em telas menores */  
    }  
}  
/* ====== End of 1.13. Blogs section ====== */

/* ====== 1.14. Footer section ====== */

footer {
    background: #025099f7;
    padding: 120px 0 0 0;
}

.footer-hr .flex {
    rotate: -90deg;
}

.footer-hr h6 {
    color: #ffffff;
    letter-spacing: 3.72px;
    text-transform: uppercase;
}

.footer-hr h3 {
    margin-top: 125px;
    color: #ffffff;
    letter-spacing: 1px;
}

.footer-hr p {
    color: #ffffff;
    padding: 0 300px;
    margin: 20px 0 30px 0;
}

.footer-hr hr {
    opacity: 1.25;
    height: 1px;
    color: #ffffffbf;
    width: 60px;
    border: 1px solid;
}

footer form {
    border-radius: 10px;
    border: 1px solid #fff;
    background: #E8E6E6;
    width: 76%;
    margin: auto;
}

footer form input {
    border-radius: 50px;
    background: #E8E6E6;
    border: none;
    outline: none;
    padding: 10px 20px;
    color: #828282;
    width: 68%;
}

footer form button {
    transition: all 0.3s ease;
    text-transform: uppercase;
}

footer form button:hover {
    color: #fff;
}

#footer-message {
    background: #fff;
    color: green;
    width: auto;
    height: auto;
    display: flex;
    align-items: flex-start;
    padding: 10px 10px 10px 10px;
    font-size: 25px;
    font-weight: 800;
    text-align: center;
    font-family: "Raleway", sans-serif;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
    border-radius: 10px;
    display: none;
    transition: display all 0.3s ease;
}

.footer-menu {
    background: linear-gradient(0deg, #003C78 0%, #0054A3 100%);
    color: #ffffff;
    padding: 50px 0;
    margin-top: 77px;
}

.footer-menu img {
    width: 100px;
    filter: brightness(0) invert(1);
}

.footer-menu ul li a:hover {
    color: #17E2F4;
}

.footer-menu i {
    font-size: 20px;
    background: linear-gradient(0deg, #17E2F4 0.5%, #17E2F4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 10px;
}

.footer-menu i:hover {
    background: linear-gradient(0deg, #2498a2 0.5%, #69d7e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-menu h4 {
    color: #fff;
    margin-bottom: 26px;
}

.footer-menu a {
    color: #ffffff;
    padding: 0 !important;
}

.footer-menu .col-lg-4 li {
    display: flex;
    gap: 20px;
}

.footer-menu p {
    padding: 0 78px 0 0;
}

.copyright {
    background: linear-gradient(0deg, #003C78 0%, #0054A3 100%);
    color: #ffffff;
    padding: 20px 0;
}

.copyright a {
    color: #ffffff;
}

/* ====== End of 1.14. Footer section ====== */


/* ====== End of 6.1. 404 / Coming Soon page ====== */

.coming-soon {
    background: linear-gradient(0deg, #003C78 0%, #0054A3 100%);
    color: #ffffff;
    min-height: 100vh;
}

.coming-soon img {
    width: 100%;
}

.coming-soon h2 {
    color: #fff;
    margin-top: -55px;
}

.coming-soon p {
    padding: 0 348px;
}
@media screen and (max-width: 1140px) {
     /* ====== 404.html / Coming.html ====== */
     .coming-soon p {
        padding: 0 50px;
    }
    .coming-soon img {
        width: 80%;
    }
}
/* ====== End of 6.1. 404 / Coming Soon page ======
/* button back to top */

#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    border: none;
    padding: 17px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #003C78;
    cursor: pointer;
    z-index: 999999999999;
}

#backToTopBtn:hover {
    color: #ffffff;
}

/* scrollbar full website */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(42deg, #003C78 0.01%, #0054A3 100%);
    border-radius: 5px;
}

/* PAGINA CONTACTOS */

 
  
  .form {  
    width: 100%;  
    max-width: 32rem;  
    font-size: 1.1rem;  
  }  
  
  .form label,  
  .form input,  
  .form textarea,  
  .form button {  
    display: block;  
    width: 100%;  
  }  
  
  .form label {  
    color: #00529E;  
    line-height: 1;  
    margin-bottom: 0.5rem;  
  }  
  
  /* Mudar aqui o fundo do input e textarea */  
  .form input,  
  .form textarea {  
    color: #00488E;
    font: inherit;  
    padding: 0.8rem;  
    margin-bottom: 1rem;  
    border: 1px solid transparent;  
    border-radius: 8px;  
    background-color: rgba(0, 82, 158, 0.1); /* 30% opaco */ 
    transition: border-color, box-shadow 0.2s;  
  }  
  
  .form textarea {  
    min-height: 13rem;  
    resize: vertical;  
  }  
  
  .form input:hover,  
  .form input:focus,  
  .form textarea:hover,  
  .form textarea:focus {  
    outline: none;  
    border-color: #00529E;  
    box-shadow: 0 0 0 3px #00529E;  
  }  
  
  .form button {  
    display: block;  
    padding: 1rem;  
    background: #00529E;  
    color: #fff;  
    font: inherit;  
    text-transform: uppercase;  
    border: none;  
    border-radius: 8px;  
    cursor: pointer;  
    transition: 0.2s;  
  }  
  
  .form button:hover,  
  .form button:focus {  
    outline: none;  
    background: #00529E;  
  }



  .contact-bg{
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(../Images/Para_site/call_center_emted.png);
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact-bg h3{
    font-size: 1.3rem;
    font-weight: 400;
}
.contact-bg h2{
    font-size: 3rem;
    text-transform: uppercase;
    padding: 0.4rem 0;
    letter-spacing: 4px;
}
.line div{
    margin: 0 0.2rem;
}
.line div:nth-child(1),
.line div:nth-child(3){
    height: 3px;
    width: 70px;
    background: #00519C;
    border-radius: 5px;
}
.line{
    display: flex;
    align-items: center;
}
.line div:nth-child(2){
    width: 10px;
    height: 10px;
    background: #00519C;
    border-radius: 50%;
}
.text{
    font-weight: 300;
    opacity: 0.9;
}
.contact-bg .text{
    margin: 1.6rem 0;
}
.contact-body{
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}
.contact-info{
    margin: 2rem 0;
    text-align: center;
    padding: 2rem 0;
}
.contact-info span{
    display: block;
}
.contact-info div{
    margin: 0.8rem 0;
    padding: 1rem;
}
.contact-info span .fas{
    font-size: 2rem;
    padding-bottom: 0.9rem;
    color: #00519C;
}
.contact-info div span:nth-child(2){
    font-weight: 500;
    font-size: 1.1rem;
}
.contact-info .text{
    padding-top: 0.4rem;
}
.contact-form{
    padding: 2rem 0;
    border-top: 1px solid #00519C;
}
.contact-form form{
    padding-bottom: 1rem;
}
.form-control{
    width: 100%;
    border: 1.5px solid #00519C;
    border-radius: 5px;
    padding: 0.7rem;
    margin: 0.6rem 0;
    font-family: "Raleway", sans-serif;
    font-size: 1rem;
    outline: 0;
}
.form-control:focus{
    box-shadow: 0 0 6px -3px rgba(48, 48, 48, 1);
}
.contact-form form div{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.6rem;
}
.send-btn{
    font-family: "Raleway", sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    color: #fff;
    background: #00519C;
    border: none;
    border-radius: 5px;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
}
.send-btn:hover{
    opacity: 0.8;
}
.contact-form > div img{
    width: 85%;
}
.contact-form > div{
    margin: 0 auto;
    text-align: center;
}
.contact-footer{
    padding: 2rem 0;
    background: #000;
}
.contact-footer h3{
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
}
.social-links{
    display: flex;
    justify-content: center;
}
.social-links a{
    text-decoration: none;
    width: 40px;
    height: 40px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.4rem;
    transition: all 0.4s ease;
}
.social-links a:hover{
    color: #00519C;
    border-color: #00519C;
}

@media screen and (min-width: 768px){
    .contact-bg .text{
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
    .contact-info{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 992px){
    .contact-bg .text{
        width: 50%;
    }
    .contact-form{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
}

@media screen and (min-width: 1200px){
    .contact-info{
        grid-template-columns: repeat(4, 1fr);
    }
}








