@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jura&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  box-sizing: border-box;
  overflow-wrap: break-word;
  --azulanalitica: #005095;
  --vermelho: #D81D20;
  --azul: #fff;
  --branco: #ffffff;
  --branco2: #F7F7F7;
  --cinza:#c4c4c4;
  --blacke3: #383838;
  --blackbg: #020203;
  --shadow: 6px 6px 12px #273133
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--branco);
  color: transparent;
  font-family: 'Roboto', sans-serif;
  background-color: #b1b1b1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

span {
  font-family: inherit;
  color: var(--azul);
}

span.nav {
  font-family: inherit;
  color: var(--azulanalitica);
}

.botao-flutuante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  font-size: 30px;
  padding-top: 15px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  text-align: center;
  transition: transform 0.3s ease;
}

.botao-flutuante:hover {
  transform: scale(1.1);
  background-color: #1ebea5;
}

header {
  width: 100%;
  min-height: 100vh;
  background-color: #000;
  background-image: url(images/bghero.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container {
  padding: 2px 0% 0%;
  max-width: 1440px;
  margin: 0 5% 0 5%;
  justify-items: center;
  background-size: cover;
}

nav {
  display: flex;
  position: relative;
  margin-top: 4px;
  justify-content: space-between;
  width: 100%;
  padding: initial;
  background-color: transparent;
  background-size: over;
}

.logo {
  width: 200px;
  margin-top: 2px;
  margin-left: -10px;
  height: 200%;
}

nav ul li {
  display: inline-block;
  list-style: none;
  margin: 15px 40px;
  flex-wrap: nowrap;
  justify-content: center;
}

nav ul li a {
  color: var(--cinza);
  align-items: center;
  text-decoration: none;
  font-size: 10px;
  position: relative;
}

nav ul li a:hover {
  color: var(--branco);
}

nav ul li a::after {
  content: '';
  width: 0;
  height: 3px;
  background: var(--branco);
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: width 0.5s;
}

nav ul li a:hover::after {
  width: 100%;
  color: var(--branco2);
}

.sidemenumobile {
  visibility: hidden;
}

.header-text {
  margin-top: 1%;
  font-size: 20px;
  color: var(--branco2);
  text-align: center;
}

.header-text h1 {
  font-size: 24px;
  margin: 20px auto 30px auto;
  width: 80%;
  line-height: 1.5;
  color: var(--branco2);
  font-family: 'Roboto', sans-serif;
  font-weight: 800;
  text-align: center;
}

.header-text h3 {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  font-family: 'Jura', sans-serif;
  margin: 30px auto 30px auto;
}

.header-text .necessidade {
  font-family: 'Roboto', sans-serif;
  margin: 30px auto 30px auto;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  line-height: 1.5;
}

/* social icons novo */

.card {
  width: fit-content;
  height: fit-content;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  margin-top: 10px;
  gap: 30px;
}

.socialContainer {
  width: 40px;
  height: 40px;
  box-shadow: 6px 6px 12px #273133;
  background-color: var(--azul);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: 0.3s;
  border-radius: 30px;
}
/* instagram*/
.containerOne:hover {
  background-color: #ED1C61;
  transition-duration: 0.3s;
  transform: scale(1.2);
}

/* linkdin*/
.containerThree:hover {
  background-color: #0077B5;
  transition-duration: 0.3s;
  transform: scale(1.2);
}
/* Whatsapp*/
.containerFour:hover {
  background-color: #25D366;
  transition-duration: 0.3s;
  transform: scale(1.2);
}

.socialContainer:active {
  transform: scale(0.9);
  transition-duration: 0.3s;
}

.socialSvg {
  width: 17px;
}

.socialSvg path {
  fill: var(--blacke3);
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Botao Contato */ 
.button1 {
  display: inline-block;
  cursor: pointer;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #090909;
  padding: 0.7em 3.3em 0.7em 1.7em;
  margin: 30px auto 30px auto;
  font-size: 18px;
  border-radius: 0.5em;
  background: var(--azul);
  border: 1px solid var(--branco2);
  box-shadow: 6px 6px 12px #273133;
}

.button1 > svg {
  height: 30px;
  position: absolute;
  padding: 0px 5px;
  margin-top: -4px;
}

.button1:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5,
              inset -4px -4px 12px #ffffff;
}

.button1:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button1:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #009087;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button1:hover {
  color: #ffffff;
  border: 1px solid #009087;
}

.button1:hover:before {
  top: -35%;
  background-color: #009087;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button1:hover:after {
  top: -45%;
  background-color: #009087;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/* ----- botao giratorio ------- */
.button {
  cursor: pointer;
  border: none;
  background: var(--blacke3);
  color: var(--blacke3);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  display: grid;
  place-content: center;
  transition: none;
  background: 300ms;
  transform: 200ms;
  font-weight: 400;
  margin: 10px auto 10px auto;
}

.button__text {
  position: absolute;
  inset: 0;
  animation: text-rotation 8s linear infinite;

  > span {
    position: absolute;
    transform: rotate(calc(19deg * var(--index)));
    inset: 7px;
  }
}

.button__circle {
  position: relative;
  width: 40px;
  height: 40px;
  overflow: hidden;
  background: var(--branco2);
  color: var(--blacke3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button__icon--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button:hover {
  background: var(--azulanalitica);
  transform: scale(1.05);
}

.button:hover .button__icon {
  color: var(--azulanalitica);
}

.button:hover .button__icon:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button:hover .button__icon--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

@keyframes text-rotation {
  to {
    rotate: 360deg;
  }
}


/*--- marquee dashboards ---*/

.marquee-container {
  width: 100%;          
  max-width: 1200px;    
  margin: 0 auto;       
  overflow: hidden;
  padding: 10px 0;
}

.marquee {
  display: flex;
  gap: 40px; /* espaço entre imagens */
  animation: scroll 25s linear infinite;
}

.marquee img {
  height: 100px; /* ajuste conforme necessidade */
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: cover;
}

.marquee:hover { 
  animation-play-state: paused; 
}

/* Animação contínua */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


#about {
  padding: 50px 0;
  color: var(--branco2);
  background-image: url('images/bgabout.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.sub-title {
  font-family:'Roboto', sans-serif;
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #4d6368, #909497);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.texto_pq {
  margin-top: 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 300;  
  line-height: 1.5;   
  width: 80%;         
  text-align: justify;   
  word-wrap: break-word;
}

/* ----- card about ----- */

.cardconteiner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px auto 20px auto;
  gap: 20px;
}

.card-about {
  overflow: visible;
  width: 300px;
  height: 250px; 
}

.content {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 300ms;
  box-shadow: 0px 0px 10px 1px #000000;
  border-radius: 5px;
}

.front, .back {
  background-color: var(--blackbg);
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 5px;
  overflow: hidden;
}

.back {
  width: 100%;
  height: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.back::before {
  position: absolute;
  content: ' ';
  display: block;
  width: 160px;
  height: 160%;
  background: linear-gradient(90deg, transparent, #c4c4c4, #c4c4c4, #c4c4c4, #c4c4c4, transparent);
  animation: rotation_481 6000ms infinite linear;
}

.back-content {
  position: absolute;
  width: 99%;
  height: 99%;
  background-color: #0a0a0a;
  border-radius: 5px;
  color: var(--cinza);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 25% 3% 25% 3%;
  gap: 30px;
}

@keyframes 
  rotation_481 {
  0% {
    transform: rotateZ(0deg);
  }

  0% {
    transform: rotateZ(360deg);
  }
}

.logomarca {
  display: flex;
  width: 60%;
  margin: 60px auto 30px auto;
  justify-items: center;
  align-items: center;
  border-radius: 20PX;
  transition: 1s ease, transform 1s ease;
}

.logomarca:hover {
  transform: scale(1.05)
}

/* ---- vcsabia ------------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------------------------- */

#vocesabia {
    padding: 50px 0;
    color: var(--branco2);
    background-image: url(images/bgvcsabia.svg);
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container-vocesabia {
    padding: auto;
    max-width: 1440px;
    margin: auto;
    justify-items: center;
    align-items: center;
}

.title_vcsabia {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--branco2);
    font-size: 24px;
    margin-top: 60px;
    margin-bottom: 10px;
}

.texto_pq_vocesabia {
  font-family: 'Roboto', sans-serif; 
  margin-top: 40px;
  font-size: 18px;
  color: var(--branco2);
  line-height: 1.5;   
  width: 70%;         
  text-align: center;   
  word-wrap: break-word;
}

.grid-fatos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 100px;
  width: 90%;
  margin: 30px auto;
  background: linear-gradient(90deg, #000000, #161616, #272727);
  background-image: url(images/bgcard1.svg);
  border-radius: 20px;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Cada card interno */
.cardinterior {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px;
  background: transparent;
  color: var(--branco2);
  text-align: left;
  border-left: 2px solid rgba(82, 82, 82, 0.2);
  transition: all 0.3s ease-in-out;
}

.cardinterior:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

.cardinterior i {
  font-size: 30px;
  margin-bottom: 10px;
}

.cardinterior .tit {
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  font-size: 15px;
}

.cardinterior p {
  font-size: 13px;
  line-height: 1.5;
  color: #ccc;
}

.learning_dashboard {
    width: 50%;
    height: auto;
    min-width: auto;
    margin-top: 20px;
    margin-left: 25%;
    align-content: center;
    border-radius: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2) ;
}

.grid-fatos-perda {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 100px;
  width: 90%;
  margin: 40px auto;
  background: linear-gradient(90deg, #000000, #161616, #272727);
  background-image: url(images/bgcard2.svg);
  border-radius: 20px;
  padding: 40px 20px;
  box-sizing: border-box;
}

.conclusao {
  background-color: var(--blackbg);
  background-image: url(images/bgcard3.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 50%;
  justify-items: center;
  border-radius: 0.5em;
  
}

.texto_conclusao {
  font-family: 'Roboto', sans-serif; 
  margin-top: 50px;
  padding-top: 25px;
  font-size: 20px;
  color: var(--branco2);
  line-height: 1.5;
  width: 70%;   
  text-align: center;
  word-wrap: break-word;
  font-weight: bold;
}

/* Botao Contato */ 
.button2 {
  display: flow-root;
  cursor: pointer;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #090909;
  padding: 0.7em 3.3em 0.7em 1.7em;
  margin-top: 30px;
  margin-bottom: 20px;
  justify-content: center;
  font-size: 18px;
  border-radius: 0.5em;
  background: var(--azul);
  border: 1px solid var(--branco2);
  box-shadow: 6px 6px 12px #273133;
}

.button2 > svg {
  height: 30px;
  position: absolute;
  padding: 0px 5px;
  margin-top: -4px;
}

.button2:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5,
             inset -4px -4px 12px #ffffff;
}

.button2:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button2:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #009087;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button2:hover {
  color: #ffffff;
  border: 1px solid #009087;
}

.button2:hover:before {
  top: -35%;
  background-color: #009087;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button2:hover:after {
  background-color: #009087;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.question {
  width: 30%;
  margin-left: 50%;
  margin-top: -250px;
  margin-bottom: -65px; 
}

#services {
  padding: 50px 0;
  background-image: url(images/bgservices.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sub-title_services {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 60px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 50px;
  color: var(--branco2);
}

.texto_servicos {
  font-family: 'Roboto', sans-serif; 
  margin-top: 10px;
  font-size: 18px;
  color: var(--cinza);
  font-weight: 400;  
  line-height: 1.5;   
  width: 70%;         
  text-align: center;   
  word-wrap: break-word;

}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
  justify-content: center;  
}

.services-list div {
    background: linear-gradient(
      135deg,
      rgba(12, 21, 26, 0.7), 
      rgba(37, 38, 39, 0.4)
    );
    box-shadow: rgba(25,25,26,0.4);
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--branco2);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.5s ease, background 0.5s ease, box-shadow 0.5s ease;
}

.services-list div i {
    font-size: 40px;
    margin-bottom: 20px;
}

.services-list div h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    margin-bottom: 15px;
}

.services-list div:hover {
    background: linear-gradient(135deg, #001f2e, #004680);
    transform: translateY(-10px);
}


#portfolio {
    padding: 50px 0;
    background-image: url(images/bgworks.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sub-title_works {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 60px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #4d6368, #909497);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.texto_trabalhos {
  font-family: 'Roboto', sans-serif; 
  margin-top: 10px;
  font-size: 18px;
  color: var(--cinza);
  font-weight: 400;  
  line-height: 1.5;   
  width: 100%;         
  text-align: center;   
  word-wrap: break-word;
}

.confira {
  font-family: 'Roboto', sans-serif; 
  color: var(--branco2);
  margin-top: 30px;
  font-size: 22px;
  font-weight: 600;     
  width: 100%;         
  text-align: center;   
  word-wrap: break-word;
}

#portfolio .marquee-container {
  width: 100%;
  overflow: hidden;
}

#portfolio .marquee {
  display: flex;
  gap: 60px; /* espaço entre imagens */
  animation: scroll 10s linear infinite;
}

#portfolio .marquee img {
  height: 40px; 
  flex-shrink: 0;
  object-fit: cover;
}

#portfolio .marquee:hover { 
  animation-play-state: paused; 
}

/* Animação contínua */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.work-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    width: 85%;
    gap: 30px;
    margin-top: 50px;
}

.work {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.work img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s;
}

.layer {
    width: 100%;
    height: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), #005297);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    text-align: center;
    color: var(--branco);
    transition: height 0.5s;
}

.layer h3 {
    font-weight: 800;
    margin-bottom: 15px;
}

.layer a {
    margin-top: 40px;
    padding: 17px;
    color: var(--vermelho);
    text-decoration: none;
    font-size: 18px;
    background: var(--branco);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
}

.work:hover img {
    transform: scale(1.1);
}

.work:hover .layer {
    height: 100%;
}

/* report */

/* report 1 */

.container-card-charts {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 70px auto 20px auto;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255),
    rgba(255, 255, 255, 0.1)
  );
  border-radius: 32px;
  padding: 1.6px;
  box-shadow: 0 0px 80px -10px rgba(255, 255, 255, 0.15);
}
.container-card-charts::before {
  position: absolute;
  content: "";
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background-color: #777777;
  z-index: -10;
  filter: blur(70px);
}
.card-charts {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, #1b1b1b, #000000);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.charts-lines {
  position: relative;
  width: 100%;
  height: 100%;
}
.charts-lines i {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
}
.lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
}
.lines span {
  width: 1.5px;
  height: 100%;
  margin: 0 18px;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.025) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}
.tags-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}
.tags-card .radio {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  border-radius: 12px;
  color: #a7a7a7;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 8px;
  font-weight: 600;
  cursor: pointer;
}
.tags-card .radio:hover {
  color: #ffffff;
}
.tags-card .radio input {
  display: none;
}

.tags-card .radio .name {
  width: 100%;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  z-index: 1;
}

.tags-card .radio input:checked + .name {
  color: #ffffff;
  background: linear-gradient(15deg, #898989, #181818, #000000);
  transform: scale(1.1);
}

.tags-card .radio input:checked + .name::before {
  position: absolute;
  background-color: #212121;
  content: "";
  inset: 1px;
  z-index: -1;
  border-radius: 12px;
}

.main-texts {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  font-weight: 500;
}
.main-texts .title {
  background-image: linear-gradient(to top left, #92400e, #f9d86d, #a6a6a6);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.main-texts .change {
  background-image: linear-gradient(to right, #c42f2f, #ffffff, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.charts-lines path {
  opacity: 0;
}
.card-charts svg {
  transition: transform 0.5s ease;
}
.card-charts:hover svg {
  transform: scale(1.5);
}
.icon-week path {
  animation: draw 8s ease infinite;
}
.icon-month path {
  animation: draw 8s 3s ease infinite;
}

@keyframes draw {
  0% {
    stroke-dashoffset: 1500;
    opacity: 0.8;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -1500;
    opacity: 0.8;
  }
}

/* fim do report 1 */

.texto-report1 {
  display: flex;
  color: var(--cinza);
  width: 80%;
  margin: 5px auto 30px auto;
  text-align: justify;
  line-height: 1.5;
  justify-content: center;
  align-items: center;
}


/* report 2 */

.stat-card {
  background: linear-gradient(
    to top,
    rgb(48, 47, 47),
    rgba(255, 255, 255, 0.1)
  );
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.18);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  width: 300px;
  margin: 70px auto 20px auto;
  color: #f3f6fa;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 3px solid transparent;
  border-image: linear-gradient(180deg, rgba(129, 129, 129, 0.15), rgba(247, 246, 246, 0.9)) 1;
  background-clip: padding-box;
  -webkit-background-clip: padding-box;
}

.stat-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-card-header h2 {
  font-family: "Inter", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #f3f6fa;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: linear-gradient(90deg, #fff 0%, #f3f6fa 50%, #e3e8ef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card-title {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f3f6fa;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: linear-gradient(90deg, #fff 0%, #f3f6fa 50%, #e3e8ef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card-menu {
  font-size: 1.3rem;
  color: #6c7383;
  cursor: pointer;
}

.stat-card-chart {
  display: flex;
  justify-content: center;
  align-items: center;
}

.donut {
  width: 170px;
  height: 170px;
}

.donut-bg {
  fill: none;
  stroke: #232733;
  stroke-width: 14;
}

.donut-segment.sales {
  stroke: #3d8bff;
}

.donut-segment.product {
  stroke: #ff6a3d;
}

.donut-segment.income {
  stroke: #1ecb6b;
}

.donut-segment {
  fill: none;
  stroke-width: 14;
  stroke-linecap: round;
  transition: stroke-dasharray 0.3s;
}

.donut-segment2 {
  fill: none;
  stroke: #1ecb6b;
  stroke-width: 14;
  stroke-linecap: round;
  transition: stroke-dasharray 0.3s;
}

.donut-segment3 {
  fill: none;
  stroke: #3d8bff;
  stroke-width: 14;
  stroke-linecap: round;
  transition: stroke-dasharray 0.3s;
}

.donut-text-main {
  font-size: 2.1rem;
  font-weight: 600;
  fill: #f3f6fa;
}

.donut-text-sub {
  font-size: 1rem;
  fill: #b0b6c3;
}

.stat-card-legend {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.legend-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  color: #b0b6c3;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
}

.legend-dot.sales {
  background: #3d8bff;
}

.legend-dot.product {
  background: #ff6a3d;
}

.legend-dot.income {
  background: #1ecb6b;
}

.legend-value {
  font-size: 2rem;
  color: #3d8bff;
  font-weight: 600;
  margin-left: 0.5rem;
}

.legend-change {
  color: #1ecb6b;
  font-weight: 600;
  margin-left: 10px;
}

.linechart {
  width: 100%;
  max-width: 360px;
  height: 120px;
  display: block;
}

.linechart .x-labels text {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  fill: #b0b6c3;
}

.dot-group .tooltip {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.dot-group:hover .tooltip {
  opacity: 1;
}

.dot-group .tooltip rect {
  fill: #232733;
  stroke: #232733;
  stroke-width: 1.2;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.22));
  rx: 8;
  opacity: 0.92;
}

.dot-group .tooltip text {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  fill: #fff;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.menu-wrapper {
  position: relative;
  display: inline-block;
  margin-right: 4px;
}

.menu-dots {
  display: flex;
  flex-direction: column;
  gap: 3px;
  cursor: pointer;
  width: 18px;
  align-items: center;
  margin: 0 8px;
}

.menu-dots span {
  display: block;
  width: 5px;
  height: 5px;
  background: #6c7383;
  border-radius: 50%;
  transition: background 0.2s;
}

.menu-toggle {
  display: none;
}

.menu-select {
  display: none;
  position: absolute;
  right: 0;
  top: 30px;
  min-width: 110px;
  z-index: 10;
  padding: 8px 0;
  border-radius: 18px;
  border: 1.5px solid rgba(80, 90, 120, 0.18);
  background: rgba(30, 34, 44, 0.72);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    opacity 0.25s cubic-bezier(0.4, 2, 0.6, 1),
    transform 0.25s cubic-bezier(0.4, 2, 0.6, 1);
  opacity: 0;
  transform: scale(0.95) translateY(-8px);
  pointer-events: none;
}

.menu-toggle:checked + .menu-dots + .menu-select {
  display: block;
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.menu-select div {
  padding: 10px 20px 10px 16px;
  color: #f3f6fa;
  cursor: pointer;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  border-left: 3px solid transparent;
  margin-bottom: 2px;
  border-radius: 8px;
  transition:
    background 0.18s,
    color 0.18s,
    border-left 0.18s;
}

.menu-select div:nth-child(1) {
  border-left: 3px solid #3d8bff;
}
.menu-select div:nth-child(2) {
  border-left: 3px solid #ff6a3d;
}
.menu-select div:nth-child(3) {
  border-left: 3px solid #1ecb6b;
}

.menu-select div:hover {
  background: rgba(61, 139, 255, 0.08);
  color: #3d8bff;
  border-left: 3px solid #3d8bff;
}
.menu-select div:nth-child(2):hover {
  background: rgba(255, 106, 61, 0.08);
  color: #ff6a3d;
  border-left: 3px solid #ff6a3d;
}
.menu-select div:nth-child(3):hover {
  background: rgba(30, 203, 107, 0.08);
  color: #1ecb6b;
  border-left: 3px solid #1ecb6b;
}

.stat-card-legend .legend-item:first-child {
  font-size: 0.95rem;
  color: #b8c0cc;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/*-- fim do report 2 --*/

.texto-report2 {
  display: flex;
  color: var(--cinza);
  width: 80%;
  margin: 15px auto 30px auto;
  text-align: justify;
  line-height: 1.5;
  justify-content: center;
  align-items: center;
}

#contact {
    padding: 30px 5%;
    background-image: url(images/bgcontato.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 20px;
    align-items: start;
    margin: 0 0 0;
}

.contact-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
}

.contact-left p {
    color: var(--cinza);
    font-family: Arial, Helvetica, sans-serif; 
    font-size: 18;
    line-height: 1.5;
    margin: 10px;
    text-align: justify;
}

.button3 {
  display: inline-block;
  cursor: pointer;
  transition: all 0.2s ease-in;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #090909;
  padding: 0.7em 3.3em 0.7em 1.7em;
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 18px;
  border-radius: 0.5em;
  background: var(--azul);
  width: 50%;
  border: 1px solid var(--branco2);
  box-shadow: 6px 6px 12px #273133;
}

.button3 > svg {
  height: 30px;
  position: absolute;
  padding: 0px 5px;
  margin-top: -4px;
}

.button3:active {
  color: #666;
  box-shadow: inset 4px 4px 12px #c5c5c5,
             inset -4px -4px 12px #ffffff;
}

.button3:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button3:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #009087;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}

.button3:hover {
  color: #ffffff;
  border: 1px solid #009087;
}

.button3:hover:before {
  top: -35%;
  background-color: #009087;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button3:hover:after {
  top: -45%;
  background-color: #009087;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}


.contact-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px; /* Adiciona padding para consistência */
}

.texto_form {
  color: var(--cinza);
  text-align: center;
  margin: auto auto 12px auto;
}

.contact-right form {
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    gap: 15px;
    background: rgba(5, 18, 31, 0.9); /* Cor semi-transparente baseada em #2c3e50 */
    backdrop-filter: blur(10px); /* Efeito de desfoque */
    -webkit-backdrop-filter: blur(10px); /* Prefixo para compatibilidade */
    border-radius: 15px; /* Bordas mais arredondadas para glassmorphism */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Sombra suave */
    padding: 20px; /* Padding interno para melhor aparência */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Borda sutil para reforçar o efeito */
}

form input,
form textarea {
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    border: 0;
    outline: none;
    background: #1b2835;
    padding: 10px;
    color: var(--branco);
    font-size: 16px;
    border-radius: 6px;
    box-sizing: border-box;
}


.botao_2 {
  border: none;
  user-select: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--branco2);
  text-align: center;
  background-color: var(--azulanalitica);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  height: 60px;
  line-height: 60px;
  width: 150px;
  transition: all 0.2s ease;
  position: relative;
}

.msg {
  height: 0;
  width: 0;
  border-radius: 2px;
  position: absolute;
  left: 15%;
  top: 25%;
}

.botao_2:active {
  transition: all 0.001s ease;
  background-color: #5d9fcd;
  box-shadow: #97989a 0 0 0 0;
  transform: translateX(1px) translateY(1px);
}

.botao_2:hover .msg {
  animation: msgRun 2s forwards;
}

@keyframes msgRun {
  0% {
    border-top: #d6d6d9 0 solid;
    border-bottom: #f2f2f5 0 solid;
    border-left: #f2f2f5 0 solid;
    border-right: #f2f2f5 0 solid;
  }

  20% {
    border-top: #d6d6d9 14px solid;
    border-bottom: #f2f2f5 14px solid;
    border-left: #f2f2f5 20px solid;
    border-right: #f2f2f5 20px solid;
  }

  25% {
    border-top: #d6d6d9 12px solid;
    border-bottom: #f2f2f5 12px solid;
    border-left: #f2f2f5 18px solid;
    border-right: #f2f2f5 18px solid;
  }

  80% {
    border-top: transparent 12px solid;
    border-bottom: transparent 12px solid;
    border-left: transparent 18px solid;
    border-right: transparent 18px solid;
  }

  100% {
    transform: translateX(150px);
    border-top: transparent 12px solid;
    border-bottom: transparent 12px solid;
    border-left: transparent 18px solid;
    border-right: transparent 18px solid;
  }
}

.copyright {
  font-family: 'Jura', sans-serif;
  font-size: 12px;
  align-items: center;
  background-color: var(--azulanalitica);
  color: var(--branco2);
  text-align: center;
  padding-top: 5px;
}

/* ----------------- aport para mobile ------------------ */

@media only screen and (max-width: 768px) {
    body {
        background-size: contain;
    }

    header {
        min-height: auto;
        padding-bottom: 20px;
        background-image: url('images/bgmobile.svg');
        background-color: #010B13;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .container {
        padding: 5px 5%;
    }

    .header-text {
        margin-top: 10px;
        font-size: 16px;
        text-align: left;
    }

    .header-text h1 {
        font-size: 20px;
        text-align: left;
        margin-right: 5%;
        color: var(--branco2);
        line-height: 2;
    }

    .header-text h2 {
        visibility: hidden;
        font-size: 20px;
    }

    .header-text h3 {
        visibility: hidden;
        font-size: 20px;
    }

    .header-text .necessidade {
        font-size: 16px;
        margin-top: 10px;
    }

    .social-icons {
        justify-content: left;
        margin: 20px auto;
    }

    .sidemenumobile {
    visibility: visible;
}

    nav .fa-solid {
        display: block;
        font-size: 30px;
        color: var(--azulanalitica);
    }

    nav ul {
        background: var(--branco2);
        position: fixed;
        top: 0;
        right: -200px;
        width: 200px;
        height: 100vh;
        padding-top: 50px;
        z-index: 1000;
        transition: right 0.5s;
    }

    nav ul li {
        display: block;
        margin: 20px;
    }

    nav ul .fa-solid {
        position: absolute;
        top: 20px;
        left: 20px;
        cursor: pointer;
    }

    .digitando {
        display: none;
        visibility: hidden;
    }

    .sub-title {
        font-size: 36px;
        margin-left: 5%;
    }

    .marquee-container {
        width: 100%;
        overflow: hidden;
        padding: 10px 0;
        visibility: hidden;
    }

    /*---- vcsabia ----*/

    .title_vcsabia {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    margin-top: 40px;
    color: var(--azulanalitica);
}

.texto_conclusao {
    font-family: 'Roboto', sans-serif; 
    margin-top: 20px;
    margin-bottom: 20px;
    width: 70%;
    color: var(--azulanalitica);
    font-size: 16px;
    line-height: 1.5;
    font-weight: bold;
}

    /*---- sobre nos ----*/

    .about-col-1,
    .about-col-2 {
        flex-basis: 100%;
        font-size: 16px;
        row-gap: 1px;
    }

    .about-col-1 img {
        max-width: 20%;
        margin: 20px auto;
    }


    .services-list div h2 {
        font-size: 20px;
    }

    .services-list div p {
        font-size: 16px;
    }

    .work img {
        height: 300px;
    }

    /* ---- contact ---- */

    #contact {
    padding: 30px 5%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 5px;
    align-items: start;
    margin: 0 0 0;
}

.contact-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
}

.contact-left p {
    color: var(--blacke3);
    font-family: Arial, Helvetica, sans-serif; 
    font-size: 12px;
    line-height: 1;
    margin-top: 5px;
    width: 100%;
    text-align: left;
}

.contact-left .button3 {
  visibility: hidden;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px; /* Adiciona padding para consistência */
}

.contact-right form {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    gap: 15px;
    background: rgba(44, 62, 80, 0.5); /* Cor semi-transparente baseada em #2c3e50 */
    backdrop-filter: blur(10px); /* Efeito de desfoque */
    -webkit-backdrop-filter: blur(10px); /* Prefixo para compatibilidade */
    border-radius: 15px; /* Bordas mais arredondadas para glassmorphism */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Sombra suave */
    padding: 20px; /* Padding interno para melhor aparência */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Borda sutil para reforçar o efeito */
}

form input,
form textarea {
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    border: 0;
    outline: none;
    background: #1b2835;
    padding: 10px;
    color: var(--branco);
    font-size: 16px;
    border-radius: 6px;
    box-sizing: border-box;
}

/* ---- nossos trabalhos ---- */

.texto_trabalhos {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--blacke3);
    margin-left: 5%;
    font-size: 16px;
}

}