@charset "UTF-8";
:root {
  --color-primary: blue;
}

@font-face {
  font-family: "Montreal Serial";
  src: url("/fonts/Montreal Serial ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montreal Serial";
  src: url("/fonts/Montreal Serial ExtraLight Italic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montreal Serial";
  src: url("/fonts/Montreal Serial Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montreal Serial";
  src: url("/fonts/Montreal Serial Light Italic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montreal Serial";
  src: url("/fonts/Montreal Serial.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montreal Serial";
  src: url("/fonts/Montreal Serial Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montreal Serial";
  src: url("/fonts/Montreal Serial Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montreal Serial";
  src: url("/fonts/Montreal Serial Medium Italic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montreal Serial";
  src: url("/fonts/Montreal Serial Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montreal Serial";
  src: url("/fonts/Montreal Serial Bold Italic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montreal Serial";
  src: url("/fonts/Montreal Serial ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montreal Serial";
  src: url("/fonts/Montreal Serial ExtraBold Italic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montreal Serial";
  src: url("/fonts/Montreal Serial Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montreal Serial";
  src: url("/fonts/Montreal Serial Heavy Italic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
html,
body {
  font-family: "Montreal Serial";
}

form {
  margin: 0;
  padding: 0;
}

main {
  width: 100%;
  overflow: hidden;
}

p {
  font-weight: 200;
  font-size: 17px;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
}

/* ================================
   RESET DE FOCO GLOBAL
================================ */
*:focus,
*:focus-visible,
*:active {
  outline: none !important;
  box-shadow: none !important;
}

header {
  z-index: 100;
  position: absolute;
}
header .col-5 img {
  max-width: 40%;
}
header #botaomenu {
  display: grid;
}
header #botaomenu span {
  background-color: #fff;
  width: 30px;
  height: 3px;
  margin: 4px 0;
}

/* ===== PREVENÇÃO DE FLASH ===== */
.menu-overlay,
.menu-full {
  visibility: hidden;
  opacity: 0;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  z-index: 100;
}
header .row {
  padding: 0.6em 0;
}
header.fix {
  background-color: rgba(0, 0, 0, 0.9215686275);
  backdrop-filter: blur(15px);
}
header.fix .col-5 img {
  animation: Logotoggle 0.5s ease-in-out forwards;
}
@keyframes Logotoggle {
  0% {
    scale: 1;
  }
  100% {
    scale: 0.8;
  }
}
header.fix .row {
  padding: 0.2em 0;
  transition: all ease 0.5s;
}
header img {
  max-width: 170px;
}

/* ===== HAMBURGUER ===== */
#botaomenu {
  display: grid;
  cursor: pointer;
}
#botaomenu span {
  background-color: #fff;
  width: 30px;
  height: 3px;
  margin: 4px 0;
  transition: 0.3s;
}

/* ===== OVERLAY ===== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 23, 28, 0.66);
  backdrop-filter: blur(3px);
  z-index: 90;
  transition: opacity 0.3s;
  pointer-events: none;
}

/* ===== MENU ===== */
.menu-full {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  transform: translateX(-100%);
  transition: transform 0.4s ease, opacity 0.3s;
  z-index: 99;
}
.menu-full .menu-container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-full .menu-links {
  list-style: none;
  padding: 0;
  text-align: center;
}
.menu-full .menu-links li {
  margin: 20px 0;
}
.menu-full .menu-links li a {
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
}

.onda {
  position: absolute;
  bottom: 0px;
  min-width: 100%;
  width: 100% !important;
}

.rocket {
  position: absolute;
  bottom: 0;
  right: 0;
  min-width: 100%;
  justify-content: end;
  overflow: hidden;
}
.rocket img {
  height: 80vh;
}
.rocket img:nth-child(2) {
  position: absolute;
  top: 110px;
  transition: top 3s ease;
}
.rocket.entrou img:nth-child(2) {
  top: 0;
}

.flag {
  position: absolute;
  bottom: 0;
  right: 0;
  min-width: 100%;
  justify-content: start;
  overflow: hidden;
}
.flag img {
  position: absolute;
  height: 85%;
  bottom: 30px;
  transition: top 3s ease;
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {
  .menu-full .menu-links li a {
    color: #23242b;
    font-size: 1.4rem;
  }
  .menu-full .menu-container {
    padding: 0;
    width: 100%;
  }
  footer .foot-logo {
    display: flex;
    justify-content: center;
    margin: 30px 0;
  }
  footer .foot-logo .logo-footer {
    width: 69px;
  }
  header .col-5 img {
    max-width: 100%;
  }
  .menu-full {
    width: 80%;
    background-color: rgba(255, 255, 255, 0.89);
  }
  .menu-container {
    justify-content: flex-start;
    padding: 60px 30px;
    align-items: flex-start;
  }
  .menu-links a {
    font-size: 1.5rem;
  }
}
/* ===== MENU ABERTO ===== */
.menu-open {
  overflow: hidden;
}
.menu-open .menu-overlay {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.menu-open .menu-full {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.menu-open #botaomenu span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.menu-open #botaomenu span:nth-child(2) {
  opacity: 0;
}
.menu-open #botaomenu span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 0;
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: translate 0.9s 0.1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition: translate 0.9s 0.3s ease;
}

.body-index #secao2 {
  background: #26282C;
  background: linear-gradient(180deg, rgb(38, 40, 44) 0%, rgb(18, 20, 23) 100%);
}
.body-index #secao2 .swiper-slide {
  transition: all 0.3s ease;
}
.body-index #secao2 .box {
  background-color: #fff;
  min-height: 33vh;
  border-radius: 20px;
  padding: 1em;
  display: grid;
  align-items: end;
}
.body-index #secao2 .box h3 {
  font-size: 20px;
  font-weight: 300;
  text-decoration: none;
  color: #000;
}
.body-index #secao2 .box img {
  width: 60%;
}
.body-index {
  /* Fundo escurecido */
}
.body-index #secao2.escuro {
  background: linear-gradient(180deg, rgb(21, 21, 22) 0%, rgb(10, 11, 12) 100%);
}
.body-index {
  /* Quando algum card está em hover */
}
.body-index #secao2.escuro .swiper-slide {
  opacity: 0.35;
  transform: scale(0.96);
  filter: grayscale(0.6);
}
.body-index {
  /* Card que está em hover */
}
.body-index #secao2.escuro .swiper-slide.hover-ativo {
  opacity: 1;
  transform: scale(1);
  filter: none;
  z-index: 2;
}
.body-index #secao3 {
  background: #3c4046;
  background: linear-gradient(180deg, #3c4046 0%, #1b1d22 100%);
}
.body-index {
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scroll-margin-top: 60px;
}
.body-index > section {
  scroll-snap-align: start;
  min-height: 100vh;
}
.body-index .search-container h1 {
  font-size: 44px;
  font-family: "Nulshock Regular";
  letter-spacing: 2px;
  color: #fff;
}
.body-index .search-container h1 strong {
  font-weight: bolder;
}
.body-index .meu-swiper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.body-index .meu-swiper .swiper-pagination {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.body-index .meu-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0.4784313725);
  transition: width 0.3s ease, border-radius 0.3s ease;
}
.body-index .meu-swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 50px;
  border-radius: 20px;
}
.body-index .meu-swiper .swiper-wrapper {
  width: 100%;
}
.body-index .meu-swiper .swiper-slide {
  width: 100% !important;
  flex-shrink: 0;
}
.body-index {
  /* MUITO IMPORTANTE quando está dentro de flex */
}
.body-index .col-lg-7 {
  min-width: 0;
}
.body-index #search-input,
.body-index #search-input:focus,
.body-index #search-input:hover,
.body-index #search-input:active {
  background-color: transparent !important;
}
.body-index .search-container p {
  font-size: 23px !important;
  margin-bottom: 4px !important;
  margin-left: 30px !important;
}
.body-index .search-container .input-group {
  display: flex;
  align-items: center;
  background-color: rgba(30, 30, 30, 0.7490196078);
  border-radius: 2em;
  border: 1px solid rgba(238, 238, 238, 0.1019607843);
  transition: box-shadow 0.3s ease;
}
.body-index .search-container .input-group:hover,
.body-index .search-container .input-group:focus-within {
  box-shadow: 0px 0px 25px 5px blue;
}
.body-index .ui-menu {
  border-radius: 20px !important;
  margin-left: 8px !important;
  margin-top: 4px;
  overflow: hidden !important;
  padding: 15px 0 !important;
}
.body-index {
  /* Exemplo de estilo para o novo layout */
}
.body-index .ui-menu-item div {
  padding: 8px 15px !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.body-index .ui-menu-item:hover {
  background-color: none !important;
  background: linear-gradient(90deg, var(--cor2), var(--cor3));
}
.body-index .ui-menu-item div:hover {
  background-color: none !important;
  background: linear-gradient(90deg, var(--cor2), var(--cor3));
  color: #fff;
}
.body-index .ui-menu-item div small {
  color: #666;
  font-size: 12px;
}
.body-index .box-dots {
  position: relative;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.body-index .dot-falling {
  position: relative;
  left: -9999px;
  width: 8px;
  height: 8px;
  border-radius: 5px;
  background-color: #fff;
  color: #fff;
  box-shadow: 9999px 0 0 0 #fff;
  animation: dot-falling 1s infinite linear;
  animation-delay: 0.1s;
}
.body-index .dot-falling::before,
.body-index .dot-falling::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
}
.body-index .dot-falling::before {
  width: 8px;
  height: 8px;
  border-radius: 5px;
  background-color: #fff;
  color: #fff;
  animation: dot-falling-before 1s infinite linear;
  animation-delay: 0s;
}
.body-index .dot-falling::after {
  width: 8px;
  height: 8px;
  border-radius: 5px;
  background-color: #fff;
  color: #fff;
  animation: dot-falling-after 1s infinite linear;
  animation-delay: 0.2s;
  right: 5px;
}
@keyframes dot-falling {
  0% {
    box-shadow: 9999px -15px 0 0 rgba(152, 128, 255, 0);
  }
  25%, 50%, 75% {
    box-shadow: 9999px 0 0 0 #fff;
  }
  100% {
    box-shadow: 9999px 15px 0 0 rgba(152, 128, 255, 0);
  }
}
@keyframes dot-falling-before {
  0% {
    box-shadow: 9984px -15px 0 0 rgba(152, 128, 255, 0);
  }
  25%, 50%, 75% {
    box-shadow: 9984px 0 0 0 #fff;
  }
  100% {
    box-shadow: 9984px 15px 0 0 rgba(152, 128, 255, 0);
  }
}
@keyframes dot-falling-after {
  0% {
    box-shadow: 10014px -15px 0 0 rgba(152, 128, 255, 0);
  }
  25%, 50%, 75% {
    box-shadow: 10014px 0 0 0 #fff;
  }
  100% {
    box-shadow: 10014px 15px 0 0 rgba(152, 128, 255, 0);
  }
}
.body-index .search-container .input-group button {
  padding: 0;
  z-index: 30;
  cursor: pointer;
  margin: 0 !important;
  left: -6px;
  background-color: #000;
  border-radius: 50% !important;
}
.body-index .search-container .input-group button img {
  position: relative;
  width: 45px;
  height: 45px;
}
.body-index .search-container .input-group button:hover {
  opacity: 0.9;
}
.body-index .search-container .input-group input {
  border-radius: 30px !important;
  background-color: transparent;
  padding: 13px 30px;
  font-weight: 500;
  box-shadow: none;
  font-size: 18px;
  color: #fff;
  flex: 1;
  z-index: 20;
  border: none;
  outline: none;
}
.body-index .search-container .input-group input::placeholder {
  color: #fff;
}

.servico .content {
  height: 100%;
  display: grid;
  align-content: space-evenly;
  justify-items: start;
}
.servico h1 {
  font-weight: bold;
}
.servico .btn-primary {
  text-transform: uppercase;
}
.servico p {
  letter-spacing: 0px;
}
.servico {
  /* ===============================
     CARD DO PRODUTO
  ================================ */
}
.servico .produto-card {
  background: #fff;
  border-radius: 28px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.servico .swiper-button-prev,
.servico .swiper-button-next {
  color: white;
}
.servico .swiper-button-prev {
  left: -25px;
}
.servico .swiper-button-next {
  right: -25px;
}
.servico {
  /* ===============================
     TÍTULO DO PLANO
  ================================ */
}
.servico .titulo-plano {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.servico {
  /* ===============================
     VALOR ANTIGO + OFF
  ================================ */
}
.servico .valor-antigo {
  text-align: center;
  font-size: 12px;
  color: #9aa0a6;
  text-decoration: line-through;
  margin-bottom: 6px;
  position: relative;
}
.servico .badge-off {
  display: inline-block;
  background: #e6f7f3;
  color: #0a7f6e;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  margin-left: 8px;
  text-decoration: none;
}
.servico {
  /* ===============================
     VALOR PRINCIPAL
  ================================ */
}
.servico .valor-principal {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: #0b5ed7;
  line-height: 1;
  width: fit-content;
  margin: 0 auto;
}
.servico .valor-principal small {
  font-size: 14px;
  font-weight: 500;
  color: #6c757d;
}
.servico {
  /* ===============================
     VALOR TOTAL
  ================================ */
}
.servico .valor-total {
  text-align: center;
  font-size: 12px;
  color: #6c757d;
  margin-bottom: 14px;
}
.servico {
  /* ===============================
     ECONOMIA
  ================================ */
}
.servico .economia {
  background: #eaf7ef;
  color: #198754;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.servico {
  /* ===============================
     LISTA DE BENEFÍCIOS
  ================================ */
}
.servico .lista-beneficios {
  list-style: none;
  padding: 0;
  margin: 0;
}
.servico .lista-beneficios li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #212529;
  margin-bottom: 10px;
}
.servico {
  /* CHECK */
}
.servico .lista-beneficios .check {
  color: #22c55e;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}
.servico {
  /* ===============================
     SWIPER AJUSTES
  ================================ */
}
.servico .produtosCarousel {
  padding-bottom: 60px;
}
.servico .produtosCarousel .swiper-slide {
  height: auto;
}
.servico {
  /* Setas */
}
.servico .produtosCarousel .swiper-button-prev,
.servico .produtosCarousel .swiper-button-next {
  color: #0b5ed7;
}
.servico .produtosCarousel .swiper-button-prev::after,
.servico .produtosCarousel .swiper-button-next::after {
  font-size: 22px;
}
.servico {
  /* ===============================
     MOBILE
  ================================ */
}
@media (max-width: 768px) {
  .servico .produto-card {
    padding: 26px 22px;
    border-radius: 22px;
  }
  .servico .titulo-plano {
    font-size: 20px;
  }
  .servico .valor-principal {
    font-size: 38px;
  }
}
.servico .valor-principal {
  text-align: center;
}
.servico .valor-principal {
  text-align: center;
  margin-bottom: 8px;
}
.servico .valor-principal strong {
  position: relative;
  display: inline-block;
  font-size: 42px;
  font-weight: 800;
  color: #0b5ed7;
  line-height: 1.1;
}
.servico {
  /* TOAST */
}
.servico .toast-parcelas {
  position: absolute;
  bottom: -13px;
  right: -36px;
  background: #8b87a8;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 14px;
  white-space: nowrap;
}
.servico {
  /* Mobile ajuste */
}
@media (max-width: 768px) {
  .servico .valor-principal strong {
    font-size: 36px;
  }
  .servico .toast-parcelas {
    top: -8px;
    right: -28px;
    font-size: 11px;
    padding: 5px 9px;
    max-height: 24px;
  }
}
.servico .valor-principal strong {
  display: block;
  font-size: 35px;
  font-weight: 800;
  color: #2020da;
  line-height: 1.1;
  margin: 20px 0;
}
.servico .valor-principal small {
  display: block;
  font-size: 14px;
  color: #6c757d;
  margin-top: 2px;
}

.orcamento-box {
  background: #eceeef;
  padding: 40px;
  border-radius: 28px;
}

.orcamento-box h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
}

.orcamento-form input,
.orcamento-form textarea {
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 999px;
  padding: 13px 30px;
  font-size: 18px;
  margin-bottom: 14px;
}
.orcamento-form input:hover, .orcamento-form input:focus,
.orcamento-form textarea:hover,
.orcamento-form textarea:focus {
  box-shadow: 0px 0px 15px -5px blue !important;
  transition: all ease 0.3s;
}

.orcamento-form textarea {
  border-radius: 20px;
  resize: none;
}

.btn-enviar {
  margin-top: 12px;
  background: linear-gradient(90deg, #0b5ed7, #6f42c1);
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn-enviar:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.erro {
  display: block;
  font-size: 13px;
  color: #dc3545;
  margin-bottom: 6px;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.accordion-item .accordion-button:not(.collapsed) {
  background-color: blue;
  color: #fff;
}

footer {
  padding: 4em 0;
  height: auto;
  background-repeat: no-repeat;
  background-position: bottom;
  position: relative;
  width: 100%;
  background-size: cover;
  background: #3C4046;
  background: linear-gradient(180deg, rgb(60, 64, 70) 0%, rgb(26, 28, 32) 95%);
}
footer .foot-atendimento {
  display: grid;
  align-content: start;
}
footer .foot-atendimento li {
  margin: 5px 0;
}
footer h6 {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: #fff;
}
footer a {
  font-size: 18px;
  margin: 5px 0;
  color: #cfcfcf;
  font-weight: 200;
}
footer p {
  font-size: 15px;
  margin: 5px 0;
}
footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .barra-fixa .container {
  position: relative;
}

.blog-footer {
  display: flex;
  justify-content: start;
  height: auto !important;
  padding: 3.5em;
}

.barra-fixa {
  position: fixed;
  bottom: 0;
  background: transparent;
  width: 100%;
  z-index: 9999;
  padding: 10px;
}
.barra-fixa .coluna-1 a {
  font-size: 19px;
}

.copyright {
  padding: 5px 15px;
  background-color: #16171a;
  color: #fff;
}
.copyright p {
  margin: 5px 0;
  padding: 0;
  font-weight: 300;
}

.call-footer a {
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  transition: all ease 0.1s;
  cursor: pointer;
  position: absolute;
  bottom: 10px;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.3098039216);
}
.call-footer a:hover ion-icon {
  font-size: 28px;
  transition: all ease 0.3s;
}
.call-footer a:hover {
  width: 49px;
  height: 49px;
  transition: all ease 0.3s;
}
.call-footer .coluna-1 {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  position: relative;
}

.zap-float {
  background-color: #25b158;
  display: inline-flex;
  align-items: center;
  border-radius: 3em;
  height: 60px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  padding-right: 25px;
  clip-path: inset(0 0 0 0 round 3em);
  /* Começa com clip-path completo */
  width: 60px;
  /* Largura inicial */
}

.zap-float:hover {
  width: 360px;
  /* Largura final fixa */
  background-color: #16af4e;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  animation: PulseI 0.3s ease-in-out infinite alternate;
}

@keyframes PulseI {
  0% {
    scale: 1;
    background-color: #16af4e;
  }
  100% {
    scale: 1.01;
    background-color: #12ce57;
  }
}
.zap-float i {
  color: white;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  flex-shrink: 0;
  min-width: 60px;
}

.zap-float span {
  color: #fff;
  font-weight: 400;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  white-space: nowrap;
  padding-right: 15px;
}

.zap-float:hover span {
  opacity: 1;
  transform: translateX(0);
}

.servicesCarousel {
  padding: 20px 25px 20px !important;
}

@media (max-width: 991.98px) {
  .servicesCarousel {
    padding: 10px 20px 40px !important;
  }
  .servicesCarousel .swiper-slide {
    width: 86% !important;
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
  .servicesCarousel .swiper-slide-active {
    opacity: 1;
  }
  .servicesCarousel .swiper-slide-next {
    opacity: 0.8;
  }
}
.swiper-slide a:hover .box {
  box-shadow: 0px 0px 20px 2px rgba(255, 255, 255, 0.5019607843);
  transition: all ease 0.2s;
}
.swiper-slide a:hover h3 {
  scale: 1.04;
  transition: all ease 0.2s;
}
.swiper-slide a:hover img {
  scale: 1.02;
  transition: all ease 0.4s;
}

/* Desktop: mostra 4 cards */
@media (min-width: 992px) {
  .servicesCarousel .swiper-slide {
    width: calc(25% - 20px) !important;
    margin-left: 10px;
    margin-right: 10px;
  }
}
/* Estilo dos botões de navegação */
.swiper-button-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.swiper-button-custom:after {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.swiper-button-next.swiper-button-custom {
  right: 0;
}

.swiper-button-prev.swiper-button-custom {
  left: 0;
}

.swiper-button-custom {
  background-color: transparent;
}
.swiper-button-custom:after {
  color: #fff;
}

/* Ajuste do container do Swiper */
.swiper {
  width: 100%;
  height: 100%;
}

/* ================================
   DASHBOARD BASE
================================ */
.dashboard {
  background: #eef0f3;
  padding: 0;
}
.dashboard .row {
  margin: 0;
}
.dashboard {
  /* ================================
     SIDEBAR
  ================================ */
}
.dashboard .sidebar {
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  min-height: 100vh;
}
.dashboard .sidebar .accordion-item {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}
.dashboard .sidebar .accordion-button {
  background: transparent;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.85rem 1rem;
}
.dashboard .sidebar .accordion-button:not(.collapsed) {
  background: #f9fafb;
  color: #111827;
}
.dashboard .sidebar i {
  font-size: 16px;
  color: #9ca3af;
}
.dashboard {
  /* ================================
     CONTEÚDO PRINCIPAL
  ================================ */
}
.dashboard .box-principal {
  background-color: #f8f9f9;
  display: flex;
  flex-direction: column;
  /* HEADER SUPERIOR */
}
.dashboard .box-principal > .d-flex:first-child {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 1.5rem;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.dashboard .box-principal {
  /* ÁREA INTERNA */
}
.dashboard .box-principal > .d-flex:nth-child(2),
.dashboard .box-principal > .row,
.dashboard .box-principal > .card {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.dashboard .box-principal {
  /* ================================
     MÉTRICAS
  ================================ */
}
.dashboard .box-principal .card-metric {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  transition: all 0.2s ease;
}
.dashboard .box-principal .card-metric:hover {
  border-color: #d1d5db;
  transform: translateY(-2px);
}
.dashboard .box-principal .card-metric .card-body {
  padding: 1.25rem;
}
.dashboard .box-principal .metric-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: #374151;
  font-size: 16px;
}
.dashboard .box-principal .metric-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}
.dashboard .box-principal .metric-label {
  font-size: 0.85rem;
  color: #6b7280;
}
.dashboard .box-principal {
  /* ================================
     GRÁFICO
  ================================ */
}
.dashboard .box-principal .card-chart {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  margin: 0 1.5rem 1.5rem;
}
.dashboard .box-principal .card-chart .card-body {
  padding: 1.25rem;
}
.dashboard .box-principal .chart-placeholder {
  height: 260px;
  background: repeating-linear-gradient(45deg, #f3f4f6, #f3f4f6 10px, #ffffff 10px, #ffffff 20px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.9rem;
}
.dashboard {
  /* ================================
     DROPDOWN USUÁRIO
  ================================ */
}
.dashboard .dropdown-toggle {
  border-radius: 999px;
  font-size: 0.85rem;
}
.dashboard .dropdown-menu {
  border-radius: 12px;
}
.dashboard {
  /* ================================
     BOTÕES DE FILTRO
  ================================ */
}
.dashboard .btn-light.btn-sm {
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
}

#secao6 .depoimento-card {
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  background: #fff;
  min-height: 233px;
  display: grid;
  align-content: space-between;
}
#secao6 .depoimento-card .stars {
  color: #2f00f7;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
#secao6 .depoimento-card p {
  font-size: 0.95rem;
  color: #333;
}

.btn-primary {
  background: linear-gradient(90deg, blue 0%, #5f12cc 90%);
  color: #fff;
  padding: 15px 30px;
  border-radius: 3em;
  text-decoration: none;
  transition: all ease 0.5s;
  border: 0;
  outline: none;
}
.btn-primary:hover {
  padding: 15px 35px;
  transition: all ease 0.2s;
  box-shadow: 0px 0px 10px 0px blue;
}
.btn-primary .box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ================================
   RESPONSIVO
================================ */
@media (max-width: 1280px) {
  .rocket img {
    height: 448px;
  }
}
@media (max-width: 991px) {
  .body-index #secao2 .box {
    min-height: 46vh;
  }
  .servicesCarousel .swiper-slide {
    width: 75% !important; /* controla largura real */
    max-width: 280px !important;
  }
  .servicesCarousel {
    padding-left: 15px !important;
  }
  .privacy-notice {
    position: fixed;
    bottom: 4px;
    left: 5%;
    right: 5%;
    background: rgba(28, 31, 43, 0.8509803922);
    backdrop-filter: blur(20px);
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 9999999;
    width: 90%;
    margin: 0;
  }
  .banner-novo .pt1 {
    justify-items: center !important;
  }
  .img-banner {
    width: 80%;
    margin-left: 10%;
  }
  .produtosCarousel .swiper-slide {
    width: 85%;
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
  .produtosCarousel .swiper-slide-active {
    opacity: 1;
  }
  .produtosCarousel .swiper-slide-next {
    opacity: 0.85;
  }
  .numero-contador {
    font-size: 2.2rem;
  }
  .numero-icon {
    font-size: 1.8rem;
  }
  .numero-box {
    padding: 20px 15px;
    min-height: 160px;
  }
  .servicos .box .numero-contador {
    font-size: 1.4rem;
  }
  .servicos .numero-box {
    min-height: 85px;
    width: 75%;
    margin: 5px auto;
    padding: 15px 20px;
    background: rgba(218, 220, 227, 0.8117647059);
    backdrop-filter: blur(5px);
  }
  .servicos .flag img {
    height: auto;
    bottom: 0;
  }
  #secao5 .accordion-button {
    padding: 10px 15px;
  }
  .rocket img {
    height: 200px;
  }
  .dashboard .sidebar {
    border-right: none;
    border-top: 1px solid #e5e7eb;
  }
  .dashboard .box-principal > .d-flex:first-child {
    border-radius: 0;
  }
  .metrics-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    /* scroll suave */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* esconde scrollbar */
  }
  .metrics-row::-webkit-scrollbar {
    display: none;
  }
  .metrics-row > [class^=col] {
    flex: 0 0 75%;
    max-width: 75%;
    scroll-snap-align: start;
  }
  .metrics-row {
    padding-left: 1rem;
  }
  .metrics-row > [class^=col] {
    margin-right: 0.5rem;
  }
  #mobileSidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.08);
  }
  #mobileSidebar.active {
    transform: translateX(0);
  }
  /* OVERLAY */
  #sidebarOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  #sidebarOverlay.active {
    opacity: 1;
    pointer-events: all;
  }
  /* BOTÃO HAMBURGER */
  .sidebar-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #111827;
    color: #ffffff;
    border: none;
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  .sidebar-toggle-btn:active {
    transform: scale(0.95);
  }
  /* BLOQUEIA SCROLL DO BODY */
  body.sidebar-open {
    overflow: hidden;
  }
}
.reveal {
  opacity: 0;
  transform: translateY(80px);
}

.reveal.active {
  animation: revealRecuo 1.1s ease-in-out forwards;
}

@keyframes revealRecuo {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  80% {
    opacity: 1;
    transform: translateY(-6px);
    /* passa do ponto */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.privacy-notice {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(28, 31, 43, 0.8509803922);
  backdrop-filter: blur(20px);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  z-index: 9999999;
  max-width: 95%;
}

.privacy-notice a {
  color: #fff;
  text-decoration: underline;
}

.privacy-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

#privacyOk {
  min-width: 140px;
  min-height: 40px;
}

/* Fade soft (depoimentos, textos humanos) */
.fade-soft {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.fade-soft.active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Adicione ao seu CSS existente */
/* Configuração principal do scroll snap */
.body-index {
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  height: 100vh;
  /* Importante: definir altura fixa */
}

/* Cada seção deve ocupar 100% da viewport */
.body-index > section {
  scroll-snap-align: start;
  min-height: 100vh;
  height: 100vh;
  overflow-y: auto;
  /* Permite scroll interno se necessário */
  position: relative;
}

/* Se você tem elementos com altura específica dentro das sections */
.section {
  display: flex;
  flex-direction: column;
}

/* Para conteúdo dentro das sections que precisa de scroll interno */
.section .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Centraliza verticalmente */
  min-height: 100%;
  /* Garante que o container ocupe toda a altura */
}

/* Ajuste para o banner principal */
.banner-principal {
  height: 100vh !important;
}

/* Remove qualquer padding/margin que possa interferir */
.body-index > section:first-child {
  padding-top: 0;
}

.banner-novo .pt1 {
  align-content: center;
  height: 100%;
  justify-items: left;
  gap: 15px;
}

.img-banner {
  width: 95%;
  margin-left: 5%;
}

/* Estilos específicos para integrar com seu layout existente */
.servicos {
  position: relative;
}

.numero-box {
  background: white;
  border-radius: 12px;
  padding: 25px 20px;
  margin-bottom: 25px;
  box-shadow: 0 0px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 150px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.numero-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.numero-content {
  width: 100%;
  text-align: center;
}

.numero-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: none;
}

.numero-value {
  margin-bottom: 5px;
}

.numero-contador {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111114;
  line-height: 1;
  display: inline-block;
}

.numero-label {
  font-size: 1.1rem;
  letter-spacing: 0px;
  font-weight: 400;
  color: #555560;
  margin-bottom: 5px;
}

.numero-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 0;
  min-height: 60px;
}

/* Animação de brilho para números */
@keyframes count-pulse {
  0%, 100% {
    color: #1a1a2e;
  }
  50% {
    color: #00dbde;
  }
}
.numero-contador.animando {
  animation: count-pulse 0.5s ease-in-out;
}

@media (max-width: 768px) {
  .col-lg-7.offset-lg-5 {
    margin-left: 0 !important;
  }
  .numero-contador {
    font-size: 2rem;
  }
  .numero-label {
    font-size: 1rem;
  }
}
/* Ajuste para garantir que o conteúdo fique acima da flag */
.container,
.row,
.col-12 {
  position: relative;
  z-index: 2;
}/*# sourceMappingURL=app.css.map */