@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    color: white !important;
    background-color: #34353A !important
}

/* HEADER */

.navbar {
  background-color: #34353A;

}

.navbar-brand {
  display: flex;
  align-items: center; 
  gap: 20px;
}

.text-container {
  display: flex;
  flex-direction: column;
}

.text-container p {
  margin: 0;
}

.navbar-nav .nav-link {
  color: rgb(255, 255, 255); 
}

.navbar-nav .nav-link:hover {
  color: rgb(104, 104, 104); 
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.custom-close {
  filter: invert(1);
}

/*FOOTER*/
.footer {
  padding: 30px 20px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  background-color: #333;
  color: white;
}

.footer * {
  background-color: #333;
}

.footer .footer-logo {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.footer .footer-logo .text-container {
  margin-left: 10px;
}

.footer .footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer .footer-links .nav {
  margin-bottom: 10px;
}

.footer .social-icons .bi {
  font-size: 24px;
  color: white;
}


body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #25262C;
  color: white;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 20px;
  padding-top: 80px;
  gap: 30px;
}

.hero img {
  height: 400px;
  width: 400px;
  object-fit: cover;
  transform: scale(1.0); 
  filter: contrast(120%);
  border-radius: 50%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  max-width: 500px;
}

.hero-text h1 {
  font-size: 72px;
  font-weight: bold;
  margin: 0;
}

.hero-text h2 {
  font-size: 24px;
  margin: 10px 0;
}

.social-icons a {
  display: inline-block;
  width: 45px;
  height: 45px;
  border: 2px solid #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 5px;
}

.social-icons a i {
  font-size: 24px;
}

.social-icons a:hover {
  background-color: #C0866C !important;
  border-color: #C0866C;
}
.social-icons a i:hover {
  background-color: #C0866C;
}

.section {
  text-align: center;
  padding: 50px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.section h2 {
  font-size: 32px;
  font-weight: bold;
  color: #C0866C !important;
  margin-bottom: 20px;
}

.section h3 {
  color: #C0866C !important;
  margin-bottom: 15px;
}

.section p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
  padding: 0 20px;
}

.column {
  width: 45%;
  text-align: left;
}

.skills-section {
  padding: 50px 20px;
  text-align: center;
}

.skills-section h2 {
  font-size: 32px;
  font-weight: bold;
  color: #C0866C !important;
}

.skills-section h3 {
  margin-top: 5%;
}

.skills-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
}

.skill {
  text-align: center;
  margin: 10px;
}

.skill img {
  width: 100px;
  height: 100px;
}

.skill p {
  font-size: 24px;
  letter-spacing: 13.50px;
}

.download-button {
  display: inline-block;
  border: 2px solid #C0866C;
  border-radius: 50px;
  padding: 10px 20px;
  color: #c06c6c;
  text-decoration: none;
  font-size: 18px;
  margin-top: 20px;
}

.download-button:hover{
  background-color: #C0866C;
}

@media (max-width: 769px) {
  .hero {
      flex-direction: column;
  }

  .hero img {
      width: 250px;
      height: 250px;
      border-radius: 50%;
  }

  .hero-text {
      text-align: center;
  }

  .hero-text h1 {
      font-size: 48px;
      text-align: center;
  }

  .hero-text h2 {
      font-size: 20px;
      text-align: center;
  }

  .social-icons {
      display: flex;
      justify-content: center;
  }

  .section {
      padding: 50px 40px;
  }

  .columns {
      padding: 0 10px;
  }

  .column {
      width: 100%;
      margin-bottom: 20px;
  }

  .skill img {
      width: 80px;
      height: 80px;
  }

  .hero img {
    margin-top: 10%;
    transform: scale(0.8);
  }

  .footer .container-fluid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer .footer-links {
    align-items: center;
    margin-bottom: 15px;
}

.footer .social-icons {
    justify-content: center;
    margin-bottom: 15px;
}

.footer .footer-logo {
    justify-content: center;
}
}

/* CURRÍCULO PROFISSIONAL - SOBRE MIM */

.square {
    padding: 30px 50px;
}

.square h2 {
  color: #C0866C !important;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo img {
    border-radius: 50%;
    margin-right: 20px;
}

.job {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.text p {
    margin: 0;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: left;
  }

  .hero img {
    max-width: 400px;
    max-height: 400px;
    margin-bottom: 0;
    margin-right: 20px;
    border-radius: 50%;
  }

  .hero-text {
    max-width: 500px;
  }
}

/* CURRÍCULO PROFISSIONAL - SOBRE MIM */

.square {
    padding: 30px 50px;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo img {
    border-radius: 50%;
    margin-right: 20px;
}

.job {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.text p {
    margin: 0;
}

/* PRJETOS */

.tipoProjeto {
    padding: 50px;
}

.cardProjetos {
    display: flex;
    flex-wrap: wrap;
}

.card {
    margin-right: 10px;
    margin-bottom: 10px;
}

.tags {
    margin-bottom: 20px;
}


/* RESPONSIVIDADE*/

@media (max-width: 426px) {
    .name {
        margin-top: 20%;
        font-size: 32px;
    }

    .role {
        font-size: 22px;
    }

    .text-container{
        text-align: center;
    }

    .hero-section img {
        width: 100%;
    }
}
