/*
Theme Name: Portfólio Ualzem
Theme URI: https://wordpress.org/themes/mytheme
Author: Ualzem Campos
Author URI: https://ualzemprojetos.com/portfolio/
Description: Portfólio Ualzem is designed to take advantage of the new design tools introduced in WordPress 6.1. With a clean, blank base as a starting point, this default theme includes ten diverse style variations created by members of the WordPress community. Whether you want to build a complex or incredibly simple website, you can do it quickly and intuitively through the bundled styles or dive into creation and full customization yourself.
Requires at least: 6.1
Tested up to: 6.2
Requires PHP: 8.0
Version: 1.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Text Domain: portfolio
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, translation-ready, blog, portfolio, news
*/

html {
  scroll-behavior: smooth;
}

* {
  font-family: "Montserrat";
  list-style: none !important;
}

body {
  background: #000;
}

img {
  max-width: 100%;
}

/*************  MENU HEADER ****************/
.header-ualzem {
  width: 100%;
  background: rgba(0, 0, 25, 0.5);
  z-index: 2;
}

.list-menu-ualzem {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.list-menu-ualzem ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.list-menu-ualzem ul li {
  position: relative;
  margin: 20px;
  transition: 0.5s;
  box-sizing: border-box;
}

.list-menu-ualzem ul li a {
  text-decoration: none;
  color: #fff;
}

.list-menu-ualzem ul li:hover a {
  color: #89ff00;
  border-bottom: 2px solid #fbff00;
}

.menu-ualzem {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

@keyframes animate {

  0%,
  100% {
    text-shadow: -1.5px -1.5px 0 #0ff, 1.5px 1.5px 0 #f00;
  }

  25% {
    text-shadow: 1.5px 1.5px 0 #0ff, -1.5px -1.5px 0 #f00;
  }

  50% {
    text-shadow: 1.5px -1.5px 0 #0ff, -1.5px 1.5px 0 #f00;
  }

  75% {
    text-shadow: -1.5px 1.5px 0 #0ff, 1.5px -1.5px 0 #f00;
  }
}


/******************  MENU MOBILE  *********************/

.menu-mobile {
  display: none;
}

.menu-desktop {
  display: block;
}

@media (max-width: 700px) {
  .menu-mobile {
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 99999999999999999;
  }

  .menu-desktop {
    display: none;
  }

  .menu-mobile .nav-menu {
    margin-block-start: 0em;
    margin-block-end: 0em;
    padding-inline-start: 0px;
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
    flex-direction: column;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    background-color: #000;
  }

  .menu-mobile .nav-menu.active {
    left: 0;
  }

  .menu-mobile li {
    list-style: none;
    margin: 16px 0;
  }

  .menu-mobile a {
    color: #fff;
    text-decoration: none;
  }

  .menu-mobile nav {
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
  }

  .menu-mobile .nav-link {
    transition: 0.4s ease;
  }

  .menu-mobile .nav-link:hover {
    color: dodgerblue;
  }

  .hamburger {
    cursor: pointer;
  }

  .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .download-master-mm-button {
    display: none !important;
  }
}




/**************  FOOTER ********************/
.site-footer {
  background-color: #eee;
  width: 100%;
}

.direitosualzem h2 {
  font-size: 1rem;
  text-align: center;
}

.redes-footerz {
  margin-bottom: 40px;
}

footer .iconSociais {
  padding-top: 70px;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iconSociais i {
  width: 100px;
  height: 100px;
  margin: auto 30px;
  background-color: #eee;
  color: #333;
  box-shadow: 3px 3px 10px #aeaeae, -4px -4px 10px white;
  text-shadow: 0 0 0px #000;
  text-align: center;
  line-height: 100px;
  cursor: pointer;
  transition: 0.5s;
}

.iconSociais #instagram:hover {
  color: #eee;
  border-radius: 50%;
  background-color: #c71585;
}

.iconSociais #twitter:hover {
  color: #eee;
  border-radius: 50%;
  background-color: blue;
}

.iconSociais #facebook:hover {
  color: #eee;
  border-radius: 50%;
  background-color: #191970;
}

.iconSociais #behance:hover {
  color: #eee;
  border-radius: 50%;
  background-color: #00008b;
}

.iconSociais #linkedin:hover {
  color: #eee;
  border-radius: 50%;
  background-color: #0000ff;
}

.iconSociais #github:hover {
  color: #eee;
  border-radius: 50%;
  background-color: #363636;
}

/**************  HERO ********************/
.video-hero {
  position: relative;
}

.video-hero video {
  max-width: 100%;
}

.container-hero-my-name {
  position: absolute;
  top: 200px;
}

.hero-my-name {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  overflow: hidden;
}

.meu-nome {
  display: flex;
  justify-content: center;
  align-items: center;
}

.meu-nome h2 {
  color: #fff;
  font-size: 7rem;
  font-weight: 900;
  animation: animate 0.5s linear infinite;
  text-align: center;
}

/*************  PERSONAL INFORMATION **************/
.personal-information {
  padding: 100px 0;
}

.cardz-personal .card {
  position: relative;
  height: 400px;
  background: #0c002b;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.cardz-personal:hover .card {
  opacity: 0.2;
}

.cardz-personal .card:hover {
  opacity: 1;
}

.cardz-personal .card::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  bottom: 2px;
  width: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cardz-personal .card .content {
  padding: 30px;
  text-align: center;
}

.cardz-personal .card .content h2 {
  position: absolute;
  right: 30px;
  font-size: 4rem;
  font-weight: 800;
  color: #1779ff;
  z-index: 1;
  opacity: 0.1;
  transition: 0.5s;
}

.cardz-personal .card:hover .content h2 {
  opacity: 1;
  transform: translateY(-70px);
}

.cardz-personal .card .content h3 {
  position: relative;
  font-size: 1.5rem;
  color: #fff;
  z-index: 2;
  opacity: 0.5;
  letter-spacing: 1px;
  transition: 0.5s;
}

.cardz-personal .card .content p {
  position: relative;
  font-size: 1rem;
  font-weight: 300;
  color: #fff;
  z-index: 2;
  opacity: 0.5;
  letter-spacing: 1px;
  line-height: 25px;
  transition: 0.5s;
}

.cardz-personal .card:hover .content h3,
.cardz-personal .card:hover .content p {
  opacity: 1;
}

.cardz-personal .card .content a {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 15px;
  background: #fff;
  color: #0c002b;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
}

.cardz-personal .card span {
  transition: 0.5;
  opacity: 0;
}

.cardz-personal .card:hover span {
  opacity: 1;
}

.cardz-personal .card span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, transparent, #1779ff);
  animation: animate1 2s linear infinite;
}

@keyframes animate1 {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.cardz-personal .card span:nth-child(2) {
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #1779ff);
  animation: animate2 2s linear infinite;
  animation-delay: 1s;
}

@keyframes animate2 {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

.cardz-personal .card span:nth-child(3) {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to left, transparent, #1779ff);
  animation: animate3 2s linear infinite;
}

@keyframes animate3 {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/************  TRABALHOS RECENTES  **************/

.title-section-my h2 {
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
  animation: animate 0.5s linear infinite;
  text-align: center;
  margin-bottom: 40px;
}

.lista-trabalhos {
  display: flex;
  align-items: center;
  justify-content: center;
}

.row-item-lista {
  display: flex;
  align-items: center;
  justify-content: center;
}

.row-item-lista li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-size: 20px;
  padding-bottom: 20px;
}

.row-item-lista li i {
  color: #89ff00;
  font-weight: 400;
}

.row-item-lista li i:hover {
  color: #fff;
  font-weight: 600;
}

.row-item-lista li a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  line-height: 25px;
}

.row-item-lista li a:hover {
  text-decoration: none;
  color: #89ff00;
  font-weight: 600;
}

.row-item-lista li:hover i {
  color: #fff !important;
  font-weight: 600 !important;
}

/***********  PORTFÓLIO  *********************/
.my-portfolio {
  padding: 100px 0;
}

.sectionPortfolio {
  padding: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.sectionPortfolio .portfList {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.sectionPortfolio .list {
  list-style: none;
  background: #eee;
  padding: 12px 20px;
  margin: 5px;
  letter-spacing: 1px;
  cursor: pointer;
}

.sectionPortfolio .list.active {
  background: #03a9f4;
  color: #fff;
}

.itemBox {
  margin-bottom: 30px;
}

.itemBox.hide {
  display: none;
}

/************** HARD SKILLS  ********************/

.hard-skils-ualzem {
  padding-bottom: 200px;
}

@media (min-width: 1200px) {
  .hard-skils-ualzem {
    height: 700px;
  }

  .hard-skils-ualzem {
    padding-bottom: 50px;
  }
}

.boxx {
  position: relative;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}

.boxx:hover {
  height: 400px;
}

.boxx .imgBx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.boxx .imgBx img {
  max-width: 100%;
  opacity: 0.1;
  transition: 0.5s;
}

.boxx:hover .imgBx img {
  opacity: 1;
}

.boxx:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: #fff;
  z-index: -1;
  height: 400px;
}

.boxx:after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: #fff;
  z-index: -2;
  filter: blur(40px);
}

.boxx:before,
.boxx:after {
  background: linear-gradient(235deg, #89ff00, #010615, #00bcd4);
}

.boxx:nth-child(2):before,
.boxx:nth-child(2):after {
  background: linear-gradient(235deg, #ff005e, #010615, #fbff00);
}

.boxx:nth-child(3):before,
.boxx:nth-child(3):after {
  background: linear-gradient(235deg, #772aff, #010615, #2196f3);
}

.boxx .contentt {
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 90px;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: 0.5s;
}

.boxx:hover .contentt {
  opacity: 1;
}

.boxx .contentt h2 {
  font-size: 2rem;
  color: #fff;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 1px;
}

.boxx .contentt h2 span {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 200;
  letter-spacing: 2px;
  display: none;
}

/***********  REDES DE TRABALHO  *******************/

.redes-trabalho {
  padding-bottom: 60px;
}

.containerRede {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 1200px;
  transform-style: preserve-3d;
}

.containerRede .boxRede {
  width: 100%;
  height: 400px;
  margin: 40px;
  background: #232323;
  border-radius: 20px;
  transform-style: preserve-3d;
}

.containerRede .boxRede::before {
  content: "REDES";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  font-style: italic;
  opacity: 0;
  transition: 0.5s;
}

.containerRede .boxRede::after {
  content: "SOCIAIS";
  position: absolute;
  bottom: 20px;
  right: 5px;
  font-size: 3.8rem;
  font-weight: 900;
  color: #fff;
  font-style: italic;
  opacity: 0;
  transition: 0.5s;
}

.containerRede .boxRede:hover::before,
.containerRede .boxRede:hover::after {
  opacity: 0.04;
}

.containerRede .boxRede .nameRede {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  color: #fff;
  width: 100%;
  transform-style: preserve-3d;
  transform: translate3d(0, 0, 75px);
  transition: 0.5s;
  opacity: 0;
  z-index: 10;
}

.containerRede .boxRede:hover .nameRede {
  top: 40px;
  opacity: 1;
}

.containerRede .boxRede .visitarRede {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform-style: preserve-3d;
  transform: translate3d(-50%, 0, 75px);
  color: #fff;
  background: #333;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.5s;
  opacity: 0;
  z-index: 10;
}

.containerRede .boxRede:hover .visitarRede {
  bottom: 30px;
  opacity: 1;
}

.containerRede .boxRede .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  transition: 0.5s;
  background: #1e0e0e;
  transform-style: preserve-3d;
  z-index: 10;
  opacity: 1;
  transform: translate3d(-50%, -50%, 0px);
}

.containerRede .boxRede .logoRede {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 300px;
  transition: 0.5s;
  z-index: 11;
  transform-style: preserve-3d;
  transform: translate3d(-50%, -50%, 50px) rotate(-15deg);
}

.containerRede:nth-child(1) .boxRede .circle,
.containerRede:nth-child(1) .boxRede .visitarRede {
  background: #1e0e0e;
}

.containerRede:nth-child(2) .boxRede .circle,
.containerRede:nth-child(2) .boxRede .visitarRede {
  background: #0c537b;
}

.containerRede:nth-child(3) .boxRede .circle,
.containerRede:nth-child(3) .boxRede .visitarRede {
  background: #166307;
}

/***********  SOCIAL E CONTATO  *****************/
.social-and-contact {
  padding-bottom: 80px;
}

.listacontato {
  position: relative;
  margin-left: 10px;
}

.listacontato h2 {
  position: relative;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
}

.listacontato ul {
  position: relative;
}

.listacontato ul li {
  position: relative;
  font-size: 1.5rem;
  left: 0;
  color: #999;
  list-style: none;
  margin: 15px 0;
  border-left: 2px solid #24ff0b;
  transition: 0.5s;
  cursor: pointer;
}

.listacontato ul li a {
  text-decoration: none;
  color: #999;
}

.listacontato ul li a:hover {
  color: #000;
}

.listacontato ul li::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #24ff0b;
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.5s;
}

.listacontato ul li:hover::before {
  transform: scaleX(1);
}

.listacontato ul li:hover {
  color: #000;
  left: 10px;
}

.listacontato ul li span {
  position: relative;
  padding: 8px;
  display: inline-block;
  z-index: 1;
  transition: 0.5s;
}

.listacontato ul li:hover span {
  color: #000;
}

.row-itenz-contz {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}

/**************************************************************************************/
/******************************  INICIO RESPONSIVO  *************************/

@media (max-width: 700px) {
  .list-menu-ualzem ul {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
    overflow: auto !important;
    white-space: nowrap !important;
    padding-bottom: 40px;
    gap: 10px !important;
  }

  .meu-nome h2 {
    font-size: 4rem;
    text-align: center;
  }

  .cardz-personal {
    margin-bottom: 30px;
  }

  .row-item-lista {
    margin-right: 0px;
    margin-left: 0px;
  }

  .sectionPortfolio .portfList {
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
  }

  .boxx:after {
    filter: blur(1px);
  }

  .itenz-bx {
    margin-bottom: 180px;
  }

  .listacontato ul {
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
  }

  .listacontato ul li:hover {
    left: 0px;
  }

  footer .iconSociais {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  footer .iconSociais a {
    margin-bottom: 20px;
  }

  .listacontato {
    flex: 0 0 90%;
    max-width: 90%;
  }
}

@media (max-width: 330px) {
  .title-section-my h2 {
    font-size: 2rem;
  }

  .iconSociais i {
    width: 70px;
    height: 70px;
    margin: auto 10px;
    line-height: 70px;
  }

  .site-footer {
    min-width: 100% !important;
  }

  .containerRede .boxRede {
    margin: 0px;
    margin-bottom: 20px;
  }
}

/**************************************************************************************/
/******************************  FIM RESPONSIVO  *************************/

/*******************  INICIO CSS FILTRA PORTFOLIO COM ISOTOPE  ***************************************/



html {
  /*   *****   Storing Colors In Variables   *****  */
  --body-clr: #f6f9fe;
  --primary-clr: #03a9f4;
  --primary-light-clr: #eaf3fa;
  --links-clr: #186f78;
  --text-clr: #3f7277;
}

.portfolio {
  width: 100%;
  padding: 30px 8%;
  background-color: #000;
}

.button-group {
  text-align: center;
  margin-bottom: 40px;
}

.button-group .button {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  background-color: #c8d1d8;
  color: #000;
  font-style: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s;
  border: none;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
}

.button-group .button.active {
  background-color: var(--primary-clr);
  color: var(--body-clr);
}

.button-group .button:hover {
  background-color: var(--primary-clr);
  color: var(--body-clr);
}

div.gallery {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

div.gallery .item {
  position: relative;
  margin: 4px;
  width: calc(33.33% - 8px);
  overflow: hidden;
  cursor: pointer;
}

.item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: 0.3s;
	border-radius:15px;
}

div.gallery .item:hover img {
  transform: scale(1.15);
}

.item .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(5, 85, 92, 0.7);
  color: var(--body-clr);
  padding: 15px;
  overflow: hidden;
  transition: opacity 0.2s ease-in-out;
  opacity: 0;
}

.item:hover .overlay {
  opacity: 1;
}

.item .overlay a {
  display: inline-block;
  padding: 8px 16px;
  border: 2px solid var(--body-clr);
  color: var(--body-clr);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.item .overlay a:hover {
  background-color: var(--body-clr);
  color: var(--primary-clr);
}


@media(max-width: 1024px) {
  div.gallery .item {
    width: calc(50% - 8px);
  }
}

@media(max-width: 600px) {
  div.gallery .item {
    width: 100%;
    margin: 4px 0px;
  }
}


.mainContainer{
	margin-top: -80px;
	margin-bottom:100px;
}



/*******************  FIM CSS FILTRA PORTFOLIO COM ISOTOPE  ***************************************/