html,
body {
  height: 100vh;
  overflow-x: hidden;
}

#secao {
  align-items: center;
  text-align: center;
}

body {
  background: rgb(52, 58, 64);
  background: url(imagens/imagem-de-fundo.jpg);
}

#secao {
  display: flex;
  justify-content: center;
  align-items: center;
}

header ul li:hover {
  color: #f2f2f2;
}


header nav .navbar-brand {
  font-size: 1.75em;
}

header nav #nav-principal ul li {
  font-size: 1.25em;
}

header nav #nav-principal ul li .btn {
  font-size: 1.18em;
}

#teste {
  font-size: 3em;
  font-weight: bold;
}

@media (max-width: 768px) {
  .especialidades {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
  }
}

@media (max-width: 991.98px) {

  #teste {
    font-size: 3rem;
  }

  header nav {
    margin-right: 13px;
    margin-left: 13px;
  }

  section #imagem-eu {
    margin-right: auto;
    margin-left: auto;
    margin-top: 2em;
  } 

  html, body {
    overflow-y: auto;
  }

}

@media (min-width: 768px) and (max-width: 991.98px) {
  .especialidades {
    margin-top: 5px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
  }
}



@media (min-width: 992px) and (max-width: 1425.98px) {
  
  #teste {
    font-size: 3rem;
  }

  #secao {
    margin-top: 13%;
  }

  
  header nav {
    margin-right: 12px;
    margin-left: 2px;
  }

  html, body {
    overflow-y: auto;
  }  

  .especialidades {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
  }

}

@media (min-width: 1425px) {
  #teste {
    font-size: 4rem;
  }

  #secao {
    margin-top: 7%;
  }

  
  header nav {
    margin-right: 15px;
    margin-left: 15px;
  }

  #secao #imagem-eu img {
    width: 30em;
    margin-right: 10px;
    margin-bottom: 50%;
} 
  html, body {
    overflow-y: auto;
  }
  
  .especialidades {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
  }
}


@keyframes typing {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

#typing {
  animation: typing 4s steps(400, end) infinite alternate;
}

.gazinbank, .portaldacidade {
  background-color: gray;
  border-radius: 10px;
}

.card-img-top {
  object-fit: cover;
  height: 180px;
  border-radius: 12px 12px 0 0;
}


i[class^="fa-"] {
    color: white;
}


.card {
    background: rgba(255,255,255,0.05); /* levemente mais visível */
    border: 1px solid rgba(255,255,255,0.1); /* borda sutil */
    border-radius: 12px;
    padding: 18px;
    display: flex;
    gap: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4); /* sombra mais visível */
    transition: transform .2s ease, box-shadow .2s ease, border .2s ease;
}

.card:hover {
    transform: translateY(-6px);
    border: 1px solid rgba(255,255,255,0.3); /* borda mais clara no hover */
    box-shadow: 0 18px 40px rgba(0,0,0,0.6), inset 0 0 10px rgba(255,255,255,0.1);
}

@keyframes pra-frente {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes pra-frente-html {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.progress {
  height: 13px; 
  background-color: #eee;
  border-radius: 8px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0;
}

.progress-bar-html { background-color: darkorange; animation: pra-frente-html 2s forwards;  }
.progress-bar-css { animation: pra-frente-css 2s forwards; background-color: #1572B6; }
.progress-bar-js { animation: pra-frente-js 2s forwards; background-color: #ffc107; }
.progress-bar-php { animation: pra-frente-php 2s forwards; background-color: #777BB3; }
.progress-bar-mysql { animation: pra-frente-mysql 2s forwards; background-color: #4479A1; }
.progress-bar-git { animation: pra-frente-git 2s forwards; background-color: #dc3545; }
.progress-bar-bootstrap { animation: pra-frente-bootstrap 2s forwards; background-color: blueviolet; }

@keyframes pra-frente-html { from { width: 0; } to { width: 95%; } }
@keyframes pra-frente-css { from { width: 0; } to { width: 85%; } }
@keyframes pra-frente-js { from { width: 0; } to { width: 70%; } }
@keyframes pra-frente-php { from { width: 0; } to { width: 60%; } }
@keyframes pra-frente-mysql { from { width: 0; } to { width: 85%; } }
@keyframes pra-frente-git { from { width: 0; } to { width: 80%; } }
@keyframes pra-frente-bootstrap { from { width: 0; } to { width: 90%; } }