@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
  scrollbar-width: thin;
  scrollbar-color: #1e88e5 #282828;
}

*::-webkit-scrollbar {
  width: 12px;
}

*::-webkit-scrollbar-track {
  background: #282828;
}

*::-webkit-scrollbar-thumb {
  background-color: #1e88e5;
  border-radius: 20px;
  border: 3px solid #282828;
}

/* ----------- VARIÁVEIS DE CORES -----------*/
.navmenu {
  position: fixed;
  top: 50%;
  right: 65px;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.navmenu ul {
  position: relative;
}
.navmenu ul li {
  padding: 12px 0;
  padding-left: 10px;
  text-align: right;
}
.navmenu ul li a {
  display: inline-block;
  text-decoration: none;
  position: relative;
}
.navmenu ul li a .dot {
  content: "";
  position: absolute;
  background: #282828;
  width: 18px;
  height: 18px;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50px;
  transition: background 550ms;
}
.navmenu ul li a span {
  float: right;
  display: inline-block;
  transform: scale(0.8);
}
.navmenu ul li a::after {
  clear: both;
  content: "";
  display: table;
}
.navmenu ul li a.active {
  font-weight: 700;
}
.navmenu ul li a.active .dot {
  background: #1e88e5;
}
.navmenu ul li a:focus span, .navmenu ul li a:hover span {
  opacity: 1;
}
.navmenu ul li .dot-label {
  text-transform: uppercase;
  opacity: 0;
  transition: transform 0.2s, opacity 0.2s;
  transform-origin: 100% 50%;
}

.navmenu.show {
  pointer-events: auto;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .navmenu {
    right: 40px;
  }
  .navmenu a {
    padding: 6px;
  }
}
.container {
  max-width: 1440px;
  margin: 10px auto;
  padding: 0 8px;
  min-height: 900px;
  border-bottom: 1px solid #7e8181;
  display: flex;
  align-items: center;
  gap: 20px;
}
.container h2 {
  font-size: 44px;
  margin-bottom: 5px;
  text-align: left;
}
.container h3 {
  font-size: 28px;
  margin-bottom: 5px;
  text-align: center;
}
.container p {
  font-size: 22px;
  line-height: 1.6;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  height: 101vh;
  width: 100%;
  background-image: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  transition: all 300ms ease-in-out;
}
.hero div {
  height: 400px;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.3764705882);
}
.hero h1 {
  font-size: 74px;
}
.hero p {
  font-size: 48px;
  letter-spacing: 10px;
  font-weight: 100;
}

@media screen and (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }
  .hero h1 {
    font-size: 54px;
    padding: 0 14px;
    width: 100%;
  }
  .hero p {
    font-size: 28px;
  }
}
.arrow-down {
  position: absolute;
  bottom: 30px;
  padding: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
.divider {
  display: block;
  margin: 18px 0;
  width: 180px;
  height: 1px;
  background-color: #7e8181;
}

.jg-avatar {
  width: 450px;
}

.section {
  display: flex;
  height: auto;
  flex-direction: column;
}

.about-content {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-direction: column;
  height: auto;
}

@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 24px 12px;
    text-align: center;
  }
  .about-content {
    padding: 18px;
  }
}
.about-links {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 450px;
  gap: 20px;
  margin-top: 10px;
}

.section-content {
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 80px 0;
}
.section-content li {
  display: inline-block;
  border: 2px solid rgba(57, 57, 57, 0.5);
  text-align: center;
  margin: 10px 10px 10px 0;
  padding: 0;
  width: 100px;
  height: 100px;
  line-height: 7;
  font-size: 14px;
}

.content-title {
  width: 100%;
  margin: 20px auto;
}

footer {
  display: flex;
  max-width: 1440px;
  margin: 10px auto;
  padding: 0 8px;
  justify-content: center;
}

.page {
  background: #0b1111;
  color: #fffafa;
}

#dark-mode-input {
  display: none;
}

.dark-mode-toggler {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 15px;
  font-size: 40px;
  transform: translateX(-50%);
  left: 50%;
  background-size: cover;
  cursor: pointer;
}

#dark-mode-input:checked ~ .page {
  background: #fffafa;
  color: #0b1111;
}
#dark-mode-input:checked ~ .page a {
  color: #282828;
}
#dark-mode-input:checked ~ .page .hero {
  opacity: 1;
  background-image: url(../images/bg-light.jpg);
}
#dark-mode-input:checked ~ .page .hero div {
  background: rgba(255, 255, 255, 0.709);
}
#dark-mode-input:checked ~ .page .divider {
  background-color: #282828;
}
#dark-mode-input:checked ~ .page #dot-nav a.is-selected .dot {
  background-color: #7e8181;
}
#dark-mode-input:checked ~ .page #dot-nav .dot {
  background: #282828;
  transition: transform 0.2s, background-color 0.5s;
  transform-origin: 50% 50%;
}
#dark-mode-input:checked ~ .page .pre-btn,
#dark-mode-input:checked ~ .page .nxt-btn {
  background: #fffafa;
  color: #0b1111;
}

#toggleButton {
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s, transform 0.3s;
  font-size: 2.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ----------- ESTILOS FORMULÁRIO DE CONTATO -----------*/
.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px;
  gap: 40px;
}

.contact-form {
  flex: 2;
  padding: 30px;
}
.contact-form h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.contact-form textarea {
  height: 150px;
}
.contact-form button {
  background-color: #0b1111;
  color: #fffafa;
  padding: 10px 20px;
  border: solid 1px;
  font-size: 18px;
  width: calc(100% - 22px);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact-form button:hover {
  background-color: #1e88e5;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
  width: calc(100% - 22px);
  padding: 10px;
  margin-bottom: 20px;
  font-size: 16px;
}

.contact-info {
  flex: 1;
  justify-content: center;
  align-items: center;
}
.contact-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
}
.contact-info div {
  display: flex;
  justify-content: center;
}

.social-media {
  margin-top: 20px;
  flex-direction: column;
  justify-content: center;
}
.social-media h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.social-icon {
  display: inline-block;
  margin-right: 10px;
  font-size: 32px;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #1e88e5;
}

/* ----------- ESTILOS PROJETOS -----------*/
.project-content {
  position: relative;
  max-width: 1440px;
  padding: 0 8px;
  display: flex;
  flex-direction: row;
}

.product-container {
  padding: 0 1vw;
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  min-width: 590px;
  height: 70vh;
  gap: 25px;
}

.product-card {
  flex: 0 0 auto;
  width: 400px;
  height: 550px;
  position: relative;
  overflow: hidden;
}

.product-image {
  position: relative;
  width: 100%;
  height: 550px;
}

.product-thumb {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-info {
  width: 88%;
  height: 250px;
  background-color: #1e88e5;
  padding: 1.2rem 1rem;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.15);
  position: absolute;
  bottom: -13.8rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  opacity: 0;
  transition: opacity 1s 1s;
}

.pre-btn, .nxt-btn {
  border: none;
  width: 3vw;
  height: 9vh;
  position: absolute;
  top: 55%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0b1111;
  color: #fffafa;
  border: solid 1px;
  cursor: pointer;
  z-index: 9;
}

@media screen and (max-width: 768px) {
  .project-content {
    width: 80vw;
  }
  .product-container {
    height: 75vh;
  }
  .product-card {
    width: 70vw;
  }
  .pre-btn, .nxt-btn {
    display: none;
  }
}
.pre-btn {
  left: 0;
}

.nxt-btn {
  right: 0;
}

.pre-btn i, .nxt-btn i {
  opacity: 0.2;
}

.pre-btn:hover i, .nxt-btn:hover i {
  opacity: 1;
}

.collection-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}

.collection {
  position: relative;
}

.collection img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.collection p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 50px;
  text-transform: capitalize;
}

.collection:nth-child(3) {
  grid-column: span 2;
  margin-bottom: 10px;
}

.product-card:hover .product-info {
  animation: show-data 1s forwards;
  opacity: 1;
  transition: opacity 0.3s;
}

.product-card:hover {
  animation: remove-overflow 2s forwards;
}

.product-card:not(:hover) {
  animation: show-overflow 2s forwards;
}

.product-card:not(:hover) .product-info {
  animation: remove-data 1s forwards;
}

/* Card animation */
@keyframes show-data {
  50% {
    transform: translateY(-16rem);
  }
  100% {
    transform: translateY(-7rem);
  }
}
@keyframes remove-overflow {
  to {
    overflow: initial;
  }
}
@keyframes remove-data {
  0% {
    transform: translateY(-7rem);
  }
  50% {
    transform: translateY(-15rem);
  }
  100% {
    transform: translateY(2rem);
  }
}
@keyframes show-overflow {
  0% {
    overflow: initial;
    pointer-events: none;
  }
  50% {
    overflow: hidden;
  }
}
ul {
  list-style: none;
}

html {
  scroll-behavior: smooth;
  background: #0b1111;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

svg {
  width: 100%;
}

img {
  width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #fffafa;
}

h1,
h2 {
  font-family: "Raleway", serif;
  font-weight: 300;
  margin: 0;
}

H3 {
  font-family: "Barlow", serif;
  font-weight: 600;
  margin: 0;
}

p, a {
  font-family: "Inter", sans-serif;
  font-weight: 200;
  margin: 0;
  line-height: 1.6;
}/*# sourceMappingURL=style.css.map */