@font-face {
  font-family: 'fjalla';
  src: url('fonts/fjalla/FjallaOne-Regular.ttf');
}

@font-face {
  font-family: ' poppins-regular';
  src: url('fonts/poppins/Poppins-Regular.ttf');
}

@font-face {
  font-family: 'poppins-bold';
  src: url('fonts/poppins/Poppins-Bold.ttf');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body::-webkit-scrollbar {
  width: 12px;
  /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: #021921;
}

body::-webkit-scrollbar-thumb {
  background-color: #27debf;
  border-radius: 20px;
  border: 3px solid #021921;
}

html {
  scroll-behavior: smooth;
}

/* Header */

header {
  width: 100%;
  font-size: 16px;
  position: fixed;
  z-index: 1;
  transition: all 0.4s ease-out;
  z-index: 10000;
}

.max-header {
  background-color: transparent;
  height: 100px;
}

.min-header {
  background-color: #0f262e;
  border-bottom: 1px solid #27debf;
  height: 80px;
}

.container-h {
  height: 100%;
  margin: 0 auto;
  padding: 0 auto;
  display: grid;
  grid-template-areas: 'log ... nav';
  grid-template-columns: auto 1fr auto;
  align-content: center;
}

.logo {
  grid-area: log;
}

.logo img {
  transition: all 0.4s ease-out;
  ;
}

.max-logo img {
  transition: all 0.4s ease-out;
  width: 100px
}

.min-logo img {
  width: 90px;
}

.nav-bar {
  grid-area: nav;
  display: grid;
  align-content: center;
}

.nav-bar ul {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-bar a {
  text-transform: uppercase;
  transition: all 0.4s ease-out;
  text-decoration: none;
}

.max-nav a, .min-nav a {
  font-size: 16px;
  font-family: ' poppins-regular';
  color: #fff;
  text-transform: uppercase;
  transition: all 0.4s ease-out;
  position: relative;
}

.max-nav a:hover::after, .min-nav a:hover::after {
  content: '';
  position: absolute;
  margin-left: 2px;
  bottom: 5px;
  width: 5px;
  height: 5px;
  background-color: #27debf;
}

.ghost {
  width: 100%;
  height: 100px;
  background-color: #0f262e;
}

@media(max-width: 767px) {
  .max-header {
    height: 80px;
  }
  .min-header {
    height: 60px;
  }
  .container-h {
    position: relative;
    padding: 0 30px;
    grid-template-areas: "log ... mnu";
  }
  .max-logo img {
    width: 115px;
  }
  .min-logo img {
    width: 90px;
  }
  .nav-bar {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: #021921;
    transform: translateX(-100%);
    transition: all 0.4s ease-out;
  }
  .max-nav {
    top: 80px;
    height: calc(100vh - 80px);
  }
  .min-nav {
    top: 60px;
    height: calc(100vh - 60px);
  }
  .menu-opened {
    transform: translateX(0);
  }
  .nav-bar ul {
    justify-content: center;
    grid-auto-flow: row;
    grid-gap: 80px;
  }
  .nav-bar li {
    text-align: center;
  }
  .menu {
    grid-area: mnu;
    display: grid;
    align-content: center;
  }
  .hamburguer {
    position: relative;
    width: 28px;
    height: 3px;
    transition: all 0.4s ease-out;
    background-color: #27debf;
  }
  .hamburguer::before {
    position: absolute;
    top: -8px;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-out;
    background-color: #27debf;
  }
  .hamburguer::after {
    position: absolute;
    top: 8px;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-out;
    background-color: #27debf;
  }
  .max-hamburguer, .max-hamburguer::before, .max-hamburguer::after {
    background-color: #27debf;
  }
  .min-hamburguer, .min-hamburguer::before, .min-hamburguer::after {
    background-color: #ffff;
  }
  .close-btn {
    width: 32px;
    transform: rotateZ(45deg);
  }
  .close-btn::before, .close-btn::after {
    top: 0;
    transform: rotateZ(90deg);
  }
}

/* End Header */

/* Banner */

.banner {
  width: 100%;
  height: 100vh;
  background-color: #021921;
  display: flex;
  align-items: center;
}

.banner .box {
  padding-top: 90px;
  padding-bottom: 50px;
  font-family: ' poppins-regular';
}

.box.show-right {
  display: block;
  animation: show-right 2s forwards;
}

@keyframes show-right {
  from {
    opacity: 0;
    transform: translate3d(-200px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.banner .box h6 {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 20px;
  font-family: ' poppins-regular';
}

.banner .box h1 {
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 20px;
  color: #fff;
  text-transform: uppercase;
  font-family: 'fjalla';
}

.banner .box h1 span {
  color: #fff;
  position: relative;
}

.banner .box h1 span::after {
  content: '';
  position: absolute;
  margin-left: 0px;
  bottom: 10px;
  left: 17px;
  width: 7px;
  height: 7px;
  background-color: #27debf;
}

.lead {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-family: ' poppins-regular';
  color: #27debf;
}

.desc {
  max-width: 450px;
  color: #fff;
  font-family: ' poppins-regular';
}

.btn-bar {
  padding-top: 10px;
}

.btn-bar a {
  color: #fff;
  font-size: 25px;
  line-height: 1;
  font-weight: 400;
  position: relative;
  text-decoration: none;
  padding-left: 0;
  transition: ease all 0.35s;
  font-family: ' poppins-regular';
}

.btn-bar a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  widows: 0;
  height: 2px;
  background: #27debf;
  transition: ease all 0.35s;
}

.btn-bar a:hover {
  padding-left: 45px;
}

.btn-bar a:hover::after {
  width: 40px;
}

.about-me img {
  width: 100%;
}

.about-me.show-left {
  animation: show-left 2s forwards;
}

@keyframes show-left {
  from {
    opacity: 0;
    transform: translate3d(200px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* About */

.about {
  padding: 100px 0;
  background-color: #0f262e;
  font-family: ' poppins-regular';
}

.about img {
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid white;
  position: relative;
  width: 400px;
  height: 400px;
  margin-left: -30px;
}

.about .info {
  text-align: center;
  padding-top: 40px;
  color: white;
  width: 300px;
  margin-left: 7%;
}

.about .info h3 {
  font-weight: 400;
  font-size: 30px;
}

.about .info p {
  margin: 0;
  font-size: 16px;
}

.info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 20px;
}

.info-list li {
  padding: 4px 0;
}

.info-list li span {
  color: #27debf;
}

.info-list label {
  color: white;
  margin: 0;
  font-weight: 400;
  padding-right: 10px;
}

.about-me-a {
  text-align: center;
}

.about-info h3 {
  font-family: 'fjalla';
  position: relative;
}

.about-info h3::after {
  content: '';
  position: absolute;
  margin-left: 0px;
  bottom: 4px;
  width: 7px;
  height: 7px;
  background-color: #27debf;
}

.title h3 {
  font-family: 'fjalla';
  position: relative;
  color: #fff;
}

.title h3::after {
  content: '';
  position: absolute;
  margin-left: 2px;
  bottom: 6px;
  width: 7px;
  height: 7px;
  background-color: #27debf;
}

.box1 {
  background: #021921;
  padding: 40px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.box1:before {
  content: "";
  position: absolute;
  top: -220px;
  left: -220px;
  width: 200px;
  height: 200px;
  border-radius: 0;
  z-index: -1;
  background: #021921;
  transition: cubic-bezier(0.39, 0.58, 0.57, 1) all 0.55s;
}

.box1:after {
  content: "";
  position: absolute;
  top: -72px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  z-index: -2;
  background-color: #27debf;
  background-image: linear-gradient(315deg, #27debf 0%, #021921 74%);
  transition: cubic-bezier(0.39, 0.58, 0.57, 1) all 0.15s;
}

.box1 .icon {
  line-height: 30px;
  font-size: 40px;
  color: white;
}

.box1 i {
  line-height: 60px;
  font-size: 40px;
  color: white;
}

.box1 .content {
  padding-top: 25px;
}

.box1 h5 {
  margin-bottom: 30px;
  color: white;
  font-size: 25px;
}

.box1:hover:before {
  top: -72px;
  left: -40px;
  border-radius: 50%;
}

.box1:hover:after {
  content: "";
  width: 120%;
  left: -10%;
  top: -10%;
  height: 120%;
  border-radius: 0;
  transition: cubic-bezier(0.39, 0.58, 0.57, 1) all 0.55s;
}

.bright.show-right {
  display: block;
  animation: show-right-card 2s forwards;
}

@keyframes show-right-card {
  from {
    opacity: 0;
    transform: translate3d(-600px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.bleft.show-left {
  display: block;
  animation: show-left-card 2s forwards;
}

@keyframes show-left-card {
  from {
    opacity: 0;
    transform: translate3d(600px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.bdown.show-up {
  display: block;
  animation: show-up-card 2s forwards;
}

@keyframes show-up-card {
  from {
    opacity: 0;
    transform: translateY(600px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.skill-section {
  padding: 100px 0;
  background-image: url('../imagens/fundo-02.png');
  background-repeat: no-repeat;
  background-size: cover;
}

.skill-section .titulo {
  font-family: 'fjalla';
  font-size: 36px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.skill-teste {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.skill-teste .cards-pro {
  width: 310px;
  background-color: #021921;
  border-radius: 2px;
  padding: 20px;
  margin: 10px;
}

.skill-teste .cards-pro h3 {
  font-family: 'fjalla';
  text-transform: uppercase;
  font-size: 25px;
  position: relative;
  width: auto;
  color: #fff;
}

.skill-teste .cards-pro h3::after {
  content: '';
  position: absolute;
  margin-left: 5px;
  bottom: 6px;
  width: 7px;
  height: 7px;
  background-color: #27debf;
}

.skill-teste .bar {
  background-color: #0f262e;
  display: block;
  height: 10px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(.25, .0, .25, 1);
}

.skill-teste .bar:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.skill-teste .bar span {
  height: 10px;
  float: left;
  background: linear-gradient(135deg, rgba(15, 38, 46, 100)0%, rgba(39, 222, 191, 100)100%);
}

.node.ativo {
  width: 90%;
  animation: node 3s;
}

.nest.ativo {
  width: 80%;
  animation: nest 3s;
}

.dotnet.ativo {
  width: 80%;
  animation: dotnet 3s;
}

.javascript.ativo {
  width: 70%;
  animation: javascript 3s;
}

.docker.ativo {
  width: 70%;
  animation: jquery 3s;
}

.react.ativo {
  width: 90%;
  animation: react 3s;
}

.azure.ativo {
  width: 70%;
  animation: azure 3s;
}

.laravel.ativo {
  width: 70%;
  animation: laravel 3s;
}

.sql.ativo {
  width: 70%;
  animation: sql 3s;
}

.sass.ativo {
  width: 60%;
  animation: sass 3s;
}
.nextjs.ativo {
  width: 80%;
  animation: next 3s;
}
.typescript.ativo {
  width: 90%;
  animation: typescript 3s;
}
.vue.ativo {
  width: 80%;
  animation: vue 3s;
}

@keyframes node {
  0% {
    width: 0%;
  }
  100% {
    width: 90%;
  }
}

@keyframes nest {
  0% {
    width: 0%;
  }
  100% {
    width: 80%;
  }
}

@keyframes laravel {
  0% {
    width: 0%;
  }
  100% {
    width: 70%;
  }
}

@keyframes docker {
  0% {
    width: 0%;
  }
  100% {
    width: 70%;
  }
}

@keyframes javascript {
  0% {
    width: 0%;
  }
  100% {
    width: 70%;
  }
}

@keyframes react {
  0% {
    width: 0%;
  }
  100% {
    width: 90%;
  }
}

@keyframes azure {
  0% {
    width: 0%;
  }
  100% {
    width: 70%;
  }
}

@keyframes sql {
  0% {
    width: 0%;
  }
  100% {
    width: 70%;
  }
}

@keyframes dotnet {
  0% {
    width: 0%;
  }
  100% {
    width: 80%;
  }
}
@keyframes next {
  0% {
    width: 0%;
  }
  100% {
    width: 90%;
  }
}
@keyframes typescript {
  0% {
    width: 0%;
  }
  100% {
    width: 90%;
  }
}
@keyframes vue {
  0% {
    width: 0%;
  }
  100% {
    width: 80%;
  }
}

.content {
  margin: 5px 0;
  color: #fff;
  font-family: 'fjalla';
}

/* timeline */

.formacao {
  padding: 100px 0;
  background-color: #0f262e;
}

.formacao .titulo {
  font-family: 'fjalla';
  font-size: 36px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.container-formacao {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  background-color: #0f262e;
}

.timeline {
  width: 80%;
  height: auto;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline ul {
  list-style: none;
}

.timeline ul li {
  padding: 20px;
  background-color: #021921;
  color: white;
  border-radius: 10px;
  margin-bottom: 20px;
}

.timeline ul li:last-child {
  margin-bottom: 0;
}

.timeline-content h1 {
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 10px;
  font-family: 'fjalla';
}

.timeline-content h1 span {
  float: right;
}

.timeline-content h1 span i {
  color: #27debf;
}

.timeline-content p {
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
  font-family: ' poppins-regular';
}

.timeline-content .date {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: 2px;
  font-family: ' poppins-regular';
}

@media only screen and (min-width: 767px) {
  .timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #333;
  }
  .timeline ul li {
    width: 50%;
    position: relative;
    margin-bottom: 50px;
  }
  .timeline ul li:nth-child(odd) {
    float: left;
    clear: right;
    transform: translateX(-60px);
    border-radius: 20px 0px 20px 20px;
  }
  .timeline ul li:nth-child(even) {
    float: right;
    clear: left;
    transform: translateX(30px);
    border-radius: 0px 20px 20px 20px;
  }
  .timeline ul li::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #27debf;
    top: 0px;
  }
  .timeline ul li:nth-child(odd)::before {
    transform: translate(50%, -50%);
    right: -45px;
  }
  .timeline ul li:nth-child(even)::before {
    transform: translate(-50%, -50%);
    left: -45px;
  }
  .timeline-content .date {
    position: absolute;
    top: -30px;
  }
}

#portfolio {
  padding: 100px 0;
  background-image: url('../imagens/fundo-01.png');
}

#portfolio .titulo {
  font-family: 'fjalla';
  font-size: 36px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.cards-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 50px 0;
}

.cards {
  width: 33%;
}

.cards .card-body a {
  display: block;
  width: auto;
  height: auto;
  position: relative;
  z-index: 2;
}

.cards .card-body img {
  width: 100%;
  z-index: 1;
  filter: grayscale(1);
}

.cards .card-body a:hover img {
  filter: grayscale(0);
}

#mvv {
  width: 100%;
  height: 500px;
  background-image: url('../imagens/fundo-image.jpg');
  padding: 60px 0 50px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.contato {
  padding: 100px 0;
  background-color: #0f262e;
}

.contato .titulo {
  font-family: 'fjalla';
  font-size: 36px;
  color: #fff;
  text-transform: uppercase;
  text-align: left;
  margin: 0px 0 40px 0px;
}

.contato .content {
  color: #fff;
  font-size: 16px;
  font-family: ' poppins-regular';
}

.contato .call p span, .contato .localizacao p span {
  margin-left: 5px;
}

.contato .call a span i, .contato .localizacao p span i {
  color: #27debf;
}

.call a {
  text-decoration: none;
  color: #fff;
  margin: 30px 0;
  font-size: 16px;
  font-family: ' poppins-regular';
}

.call a:hover {
  color: #27debf;
}

.call a span {
  margin-left: 15px;
}

.contato h4 {
  font-family: 'fjalla';
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
}

.contato .localizacao, .contato .call {
  color: #fff;
  margin: 30px 0;
  font-size: 16px;
  font-family: ' poppins-regular';
}

.contato .links {
  text-align: left;
}

.contato .links a {
  margin: 0 10px 0 0;
}

.sm a {
  display: inline-block;
  font-size: 30px;
  width: 50px;
  height: 50px;
  text-align: left;
  color: #fff;
  margin: 0 10px;
  transition: .4s linear;
  position: relative;
}

.sm a::before, .sm a::after {
  content: '';
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: .4s linear;
}

.sm a:hover {
  transform: scale(.8);
}

.sm a:hover i {
  color: #27debf;
}

.formulario {
  width: 100%;
  margin: auto;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
}

.formulario h2 {
  font-family: ' poppins-regular';
  font-weight: 400;
  font-size: 30px;
}

.field {
  border: none;
  padding: 10px;
  width: 100%;
  outline: none;
  width: 100%;
  background: #fff;
  color: #fff;
  margin-bottom: 20px;
  background: transparent;
  border: 2px solid #fff;
  font-family: ' poppins-regular';
}

.form-group label {
  margin: 10px 0;
}

textarea .field {
  background: #fff;
  color: #333;
  padding: 10px;
  padding-top: 20px;
  margin-bottom: 20px;
}

.button {
  border: none;
  padding: 10px 30px;
  display: inline-block;
  transition: 0.5s ease-out;
  color: #fff;
  background: transparent;
  display: block;
  width: 100%;
  max-width: 300px;
  margin: auto;
  border: 2px solid #fff;
}

.button span i {
  color: #fff;
}

.button:hover {
  background-color: #021921;
  border: 2px solid #27debf;
}

.form-control:focus {
  background: transparent;
  box-shadow: none;
  outline: 0;
  border-color: #27debf;
  color: #fff;
  font-family: ' poppins-regular';
}

footer {
  background-color: #021921;
  padding: 40px 0;
}

.co {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.copy p {
  color: #fff;
  font-family: ' poppins-regular';
  margin: 0;
  font-size: 13px;
}

.copy p span {
  color: #27debf;
  font-weight: 700;
}

.desevolvimento p {
  color: #fff;
  font-family: ' poppins-regular';
  margin: 0;
  font-size: 13px;
}

.desevolvimento p span {
  color: #27debf;
  font-weight: 700;
}

@media(max-width:767px) {
  .banner {
    height: auto;
    padding-bottom: 30px;
  }
  .about {
    padding: 50px 0;
  }
  .about img {
    width: 200px;
    height: 200px;
  }
  .info-list ul {
    padding-left: 0;
  }
  .box1 {
    margin-bottom: 15px;
  }
  .banner .box h1 {
    font-size: 45px;
  }
  .cards {
    width: 100%;
  }
  .cards a {
    width: 100% !important;
  }
  .timeline ul {
    padding: 0 !important;
  }
  .btn-bar a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    widows: 0;
    height: 0;
  }
}

@media only screen and (min-width:768px) and (max-width:1024px) {
  .banner {
    height: auto;
    padding-bottom: 30px;
  }
  .box1 {
    margin: 10px 0;
  }
}
/* Notificações de Email */
.email-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    z-index: 99999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideInRight 0.5s ease-out;
}

.success-notification {
    background-color: #28a745;
    color: white;
    border-left: 5px solid #1e7e34;
}

.error-notification {
    background-color: #dc3545;
    color: white;
    border-left: 5px solid #bd2130;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Auto-hide após 5 segundos */
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
