/* Estilos para o Menu Mobile Personalizado */
:root {
    --menu-color: #1950FF; /* Cor principal do menu */
    --menu-white: #fff;
    --menu-duration: .85s;
    --menu-easing: ease;
}

/* Oculta o novo botão de menu em telas grandes */
.navTrigger {
    display: none;
}

/* Mostra o novo botão e esconde o antigo em telas de celular */
@media (max-width: 991.98px) {
    /* Esconde o botão de menu padrão do Bootstrap */
    .navbar-toggler {
        display: none !important;
    }

    
    /* Mostra nosso novo botão de menu animado */
    .navTrigger {
        display: block;
        position: absolute;
        top: 10px;
        right: 15px;
        z-index: 1100; /* Acima da navbar */
        width: 36px;
        height: 36px;
        background: none;
        border: 0;
        cursor: pointer;
    }

    .navTrigger svg {
        width: 64px;
        height: 48px;
        top: -6px;
        left: -14px;
        stroke: #343a40; /* Cor do ícone fechado */
        stroke-width: 4px;
        stroke-linecap: round;
        stroke-linejoin: round;
        fill: none;
        display: block;
        position: absolute;
    }

    .navTrigger svg path {
        transition: stroke-dasharray var(--menu-duration, .85s) var(--menu-easing, ease),
                    stroke-dashoffset var(--menu-duration, .85s) var(--menu-easing, ease);
        stroke-dasharray: var(--array-1, 26px) var(--array-2, 100px);
        stroke-dashoffset: var(--offset, 126px);
        transform: translateZ(0);
    }
    .navTrigger svg path:nth-child(2) { --menu-duration: .7s; --offset: 100px; --array-2: 74px; }
    .navTrigger svg path:nth-child(3) { --offset: 133px; --array-2: 107px; }

    .navTrigger.active svg {
        stroke: var(--menu-white);
    }
    .navTrigger.active svg path {
        --offset: 57px;
    }
    .navTrigger.active svg path:nth-child(1),
    .navTrigger.active svg path:nth-child(3) {
        --menu-easing: cubic-bezier(.2, .4, .2, 1.1);
    }
    .navTrigger.active svg path:nth-child(2) { --menu-duration: .4s; --offset: 2px; --array-1: 1px; }
    .navTrigger.active svg path:nth-child(3) { --offset: 58px; }
}

/* O Painel do Menu */

.navMenu {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--menu-white);
    opacity: 0;
    z-index: 1050; /* Abaixo do botão, mas acima do resto */
    visibility: hidden;
    transition: all .375s;
}

.navMenu.active {
    opacity: 1;
    visibility: visible;
}

.navMenu.active::before {
    transform: skew(-14deg) translateX(0);
}

.navMenu.active li {
    opacity: 1;
    transform: translateY(0);
}

.navMenu::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0; right: -15px;
    background: #fbfbfb;
    transform-origin: 0 0;
    transform: skew(-14deg) translateX(-120%);
    transition: all .275s .1s;
}

.navMenu ul {
    list-style: none;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-end;
    justify-content: center;
    transform: translateX(-18%) skew(-16deg);
    width: 100%; /* Garante que ocupe o espaço */
    margin: 0;
}

.navMenu li {
    display: block;
    margin: .5rem 0;
    text-align: right;
    opacity: 0;
    transform: translateY(-10px);
}

.navMenu li a {
    position: relative;
    left: 0;
    display: block;
    padding: 12px 0;
    color: var(--menu-white);
    font-size: 1.4em;
    text-decoration: none;
    transform: skew(16deg);
    transition: .25s;
}
.navMenu li a:hover {
    left: 10px;
    color: var(--menu-white);
}

/* Animação escalonada dos links */
.navMenu.active li:nth-child(1) { transition: all 275ms 275ms; }
.navMenu.active li:nth-child(2) { transition: all 275ms 325ms; }
.navMenu.active li:nth-child(3) { transition: all 275ms 375ms; }
.navMenu.active li:nth-child(4) { transition: all 275ms 425ms; }
.navMenu.active li:nth-child(5) { transition: all 275ms 475ms; }


.headerbg {
	background: rgb(255 255 255 / 91%);
    transition: all 0.5s;
	
	
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --body-bg: hsl(0, 0%, 5%);
}

.diagonal {
  --skew-angle: -3deg;
  --background: linear-gradient(35deg, #2754b2, #002762);
  position: relative;
  isolation: isolate;
}

.diagonal::after {
  content: "";
  background: var(--background);
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: skewY(var(--skew-angle));
}

.rev-diagonal {
  --skew-angle: 3deg;
  --background: linear-gradient(45deg, #2754b2, #002762);
  position: relative;
  isolation: isolate;
  text-align: right;
}

.rev-diagonal::after {
  content: "";
  background: var(--background);
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: skewY(var(--skew-angle));
}

.section-bg {
  padding: 120px 0;
  color: #fff;
  content: "";
  background: linear-gradient(135deg, #317be5 0%, #064092 100%);
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

.section-bg-service {
  content: "";
  background: #fff;
  color: #002762;
}

.section-bg-projetos {
  content: "";
  background: #002762;
  color: #fff;
}

.section-bg-logomarcas {
  content: "";
  background: #002762;
  color: #fff;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}
.section-title h2 {
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #afed1d;
  bottom: 0;
  left: calc(50% - 25px);
}
.section-title p {
  margin-bottom: 0;
}

.section-title-slogan {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
  color: #fff;
}
.section-title-slogan h2 {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title-slogan h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #d62d83;
  bottom: 0;
  left: calc(50% - 25px);
}
.section-title-slogan p {
  margin-bottom: 0;
  color: #fff;
}

.btn-action {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #002762;
  border: 2px solid #002762;
}
.btn-action:hover {
  background: #afed1d;
  border-color: #afed1d;
  color: #fff;
}

.btn-lgpd {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  color: #fff;
  background: #002762;
  border: 2px solid #002762;
 
}
.btn-lgpd:hover {
  background: #afed1d;
  border-color: #afed1d;
  color: #fff;
}

/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
}
.tabs .nav-link {
  border: 1px solid #b9b9b9;
  padding: 10px;
  transition: 0.3s;
  color: #111111;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  margin-top: 15px;
}
.tabs .nav-link i {
  padding-right: 10px;
  font-size: 32px;
}
.tabs .nav-link h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}
.tabs .nav-link:hover {
  color: #d62d83;
}
.tabs .nav-link.active {
  background: #002762;
  color: #fff;
  font-weight: 600;
  border-color: #002762;
}
@media (max-width: 768px) {
  .tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .tabs .nav-link {
    padding: 15px;
  }
  .tabs .nav-link i {
    font-size: 28px;
  }
}
.tabs .tab-content {
  margin-top: 30px;
}
.tabs .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}
.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}
.tabs .tab-pane ul li {
  padding-bottom: 10px;
}
.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #359d1b;
}
.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 80px;
}
.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}
.counts .count-box i {
  position: absolute;
  width: 54px;
  height: 54px;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #fff;
  color: #afed1d;
  border-radius: 50px;
  border: 2px solid #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.counts .count-box span {
  font-size: 18px;
  display: block;
  font-weight: 700;
  color: #111111;
}
.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #002762;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Faqs
--------------------------------------------------------------*/
.accordion-button:not(.collapsed) {
    background-color: #d62d83;
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-item {
	border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	font-size: 18px;
}


