@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Ubuntu+Sans:wdth,wght@75..100,100..800&display=swap");
html,
body {
  font-family: "Ubuntu Sans", sans-serif;
  overflow: hidden;
}

p {
  font-size: 15px;
}

body,
html {
  height: 100%;
  margin: 0;
}

.gradiente {
  background: linear-gradient(90deg, #f2f3f5, #aec1dc, #cfddf0, #d2e1f7, #ffffff) no-repeat;
  background-size: 1200% 100%;
  height: 100vh;
  animation: gradiente 38s ease infinite;
}

@keyframes gradiente {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
}

.img-box {
  background-image: url(https://www.alucoildesign.com/assets/pages/media/profile/profile_user.jpg);
  width: 220px;
  height: 220px;
  min-width: 220px;
  min-height: 220px;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
}

section .conteudo .img-box {
  width: 70px;
  height: 70px;
  min-width: 70px;
  min-height: 70px;
}
section .conteudo .job-box {
  background-color: rgba(255, 255, 255, 0.44);
  padding: 1em 1.5em;
  border-radius: 4em;
  gap: 5px;
  opacity: 0;
  transform: translateY(200px);
  animation: slideIn 1.2s forwards;
}
section .conteudo .job-box p {
  font-size: 13px;
}
section .conteudo .col-12:nth-child(1) .job-box {
  animation-delay: 0s;
}
section .conteudo .col-12:nth-child(2) .job-box {
  animation-delay: 0.2s;
}
section .conteudo .col-12:nth-child(3) .job-box {
  animation-delay: 0.4s;
}
section .conteudo .col-12:nth-child(4) .job-box {
  animation-delay: 0.6s;
}

.pt2 .infos .apresenta {
  background-color: rgba(255, 255, 255, 0.4705882353);
  margin: 1em 0;
  padding: 15px;
  border-radius: 15px;
  display: none;
  box-sizing: border-box;
  width: 100%;
  /* Largura inicial */
}
.pt2 .infos .apresenta .head img {
  width: 20px;
  height: 20px;
  margin: 5px 15px 0px;
  cursor: pointer;
}
.pt2 .infos .apresenta p {
  padding: 0 1em 1em 1em;
  text-align: justify;
  font-size: 15px;
}

.btn-primary.active {
  box-shadow: 0px 0px 7px 0px #1875ff;
  background-color: #1372ff;
}

.btn-primary {
  background-color: #003f9f;
  border: none;
}
.btn-primary:hover {
  box-shadow: 0px 0px 7px 0px #1875ff;
  background-color: #1372ff;
}

.btn-success:hover {
  background-color: #07ac5f;
  border-color: #07ac5f;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn {
  border-radius: 3em;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pt1,
.pt2,
.pt3,
.pt4,
.pt5,
.pt6 {
  min-width: 100%;
  min-height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
}

.pt1 .container,
.pt2 .container,
.pt3 .container,
.pt4 .container,
.pt5 .container,
.pt6 .container {
  min-width: 100%;
  min-height: 100vh;
  display: grid;
  align-items: center;
}

.col-12 {
  position: relative;
}

.cursos .conteudo,
.contato .conteudo {
  overflow: auto;
  flex-wrap: wrap;
  display: grid;
  height: 70vh;
}
.cursos .container .d-grid .texto,
.contato .container .d-grid .texto {
  background-color: rgba(222, 227, 240, 0.8);
  margin: 1em 0;
  padding: 1.7em;
  border-radius: 15px;
  display: none;
  box-sizing: border-box;
  width: 100%;
}
.cursos .container .d-grid .texto form,
.contato .container .d-grid .texto form {
  width: 100%;
  row-gap: 10px;
  display: grid;
}
.cursos .container .d-grid .texto form input,
.contato .container .d-grid .texto form input {
  border-radius: 3em;
  padding: 8px 20px;
  resize: none;
}
.cursos .container .d-grid .texto form textarea,
.contato .container .d-grid .texto form textarea {
  border-radius: 1.4em;
  padding: 8px 20px;
  resize: none;
  height: 88px;
}
.cursos .container .d-grid .texto form button,
.contato .container .d-grid .texto form button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 11px;
  text-transform: uppercase;
}
.cursos .container .d-grid .texto form button i,
.contato .container .d-grid .texto form button i {
  font-size: 19px;
}
.cursos .container .d-grid .contatos a,
.contato .container .d-grid .contatos a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  display: flex;
  gap: 7px;
  align-items: center;
  width: fit-content;
}
.cursos .container .d-grid .contatos a i,
.contato .container .d-grid .contatos a i {
  color: #003f9f;
  font-size: 25px;
}
.cursos .box,
.contato .box {
  background-color: rgba(255, 255, 255, 0.62);
  padding: 20px;
  border-radius: 15px;
  display: flex;
  gap: 15px;
  align-items: center;
  /* Front-end */
  /* Back-end */
  /* e-Commerce */
  /* Identidade Visual */
  /* SEO */
  /* Inteligência Artificial */
}
.cursos .box i,
.contato .box i {
  font-size: 50px;
}
.cursos .box .fa-laptop-code,
.contato .box .fa-laptop-code {
  color: #039d90;
}
.cursos .box .fa-server,
.contato .box .fa-server {
  color: #0359d9;
}
.cursos .box .fa-shopping-cart,
.contato .box .fa-shopping-cart {
  color: #f67a64;
}
.cursos .box .fa-palette,
.contato .box .fa-palette {
  color: #6b379d;
}
.cursos .box .fa-chart-line,
.contato .box .fa-chart-line {
  color: #1ade83;
}
.cursos .box .fa-robot,
.contato .box .fa-robot {
  color: #00a8b4;
}

.contato .conteudo {
  overflow: auto;
  height: auto;
}

.voltar {
  position: absolute;
  right: 0px;
  top: 0px;
  display: flex;
  align-items: center;
  background-color: transparent;
  border: 0;
  outline: 0;
  gap: 7px;
}
.voltar h4 {
  font-size: 19px;
}
.voltar img {
  width: 31px;
}

.portfolio .buttons .active-filter {
  box-shadow: 0px 0px 7px 0px #1875ff;
  background-color: #1372ff;
}

.portfolio .box {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  border: 4px solid #ffffff;
  transition: all ease 0.3s;
}
.portfolio .box:hover {
  transform: scale(1.03);
  transition: all ease 0.3s;
}
.portfolio .box .site-img {
  justify-items: center;
  width: 100%;
  background-position: center;
  background-size: cover;
}
.portfolio .box .fundo {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.3s;
}
.portfolio .box .fundo:hover {
  transition: all ease 0.3s;
  backdrop-filter: blur(0px);
}

.portfolio-grid {
  overflow: auto;
  height: 70vh;
  padding: 15px;
}

@media (max-width: 991px) {
  html,
  body {
    overflow: auto;
  }
  .inicio {
    justify-items: center;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .inicio .infos {
    width: 100%;
    text-align: center;
    gap: 5px;
    display: grid;
  }
  .cursos .conteudo, .contato .conteudo {
    height: auto;
  }
  .contato .container .d-grid .contatos a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    display: flex;
    gap: 7px;
    align-items: center;
    width: 100%;
    background-color: #003f9f;
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 7px 0;
    border-radius: 2em;
  }
  .contato .container .d-grid .contatos a i {
    color: #ffffff;
    font-size: 20px;
  }
  .infos h2,
  .infos h4 {
    text-align: center;
  }
  .portfolio-grid {
    height: auto;
  }
  .portfolio .buttons {
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
    display: grid;
  }
  .voltar {
    padding: 16px;
  }
}
@media (min-width: 992px) {
  .apresenta {
    width: 500px !important;
    /* Largura fixa para telas maiores que 991px */
  }
}/*# sourceMappingURL=app.css.map */