/* IMPORTAÇÕES DE FONTES */
@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Pinstripe:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* RESET GERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CONFIGURAÇÕES GERAIS */
body {
  background-color: #141414;
  font-family: 'Montserrat', sans-serif;
  height: 100vh;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 1px;
}

::-webkit-scrollbar-thumb {
  background-color: #04e9ac;
}

/* LOGO */
#logo {
  width: 150px;
}

.boxeador img{
    width: 500px;
}

/* HEADER E NAV */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu li {
  font-size: 18px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 400;
  transition: 0.2s;
}

.menu li:hover a,
.menu a:hover {
  color: #04e9ac;
  transform: scale(1.1);
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: white;
  text-decoration: none;
  transition: 0.2s;
}

.social-icons a:hover i {
  transform: scale(1.1);
  color: #04e9ac;
}

/* MENU MOBILE */
.mobile-menu {
  cursor: pointer;
  display: none;
}

.mobile-menu div {
  width: 32px;
  height: 2px;
  background: #b0c4de;
  margin: 8px;
  transition: 0.3s;
}

.mobile-menu.active .line1 {
  transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2 {
  opacity: 0;
}

.mobile-menu.active .line3 {
  transform: rotate(45deg) translate(-5px, -7px);
}

.menu.active {
  transform: translateX(0);
}

/* SEÇÃO: APRESENTAÇÃO */
.primeira-pag {
  padding: 40px 4%;
}

.flex {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  flex-direction: row;
}

.txt h1 {
  color: #04e9ac;
  font-size: 50px;
  font-weight: 400;
}

.txt h2 {
  color: #fff;
  font-weight: 400;
}

#dev {
  color: #b0c4de;
  margin-top: -40px;
}

#bio-txt {
  color: #b0c4de;
  font-size: 18px;
  margin: 30px 0 35px;
}

.fcnsc {
  padding: 20px 50px;
  border-radius: 10px;
  font-size: 15px;
  background: none;
  border: 2px solid #04e9ac;
  color: #04e9ac;
  font-weight: 700;
  transition: 0.2s;
}

.fcnsc:hover {
  transform: scale(1.1);
  color: #10845c;
  border-color: #10845c;
  cursor: pointer;
}

/* SEÇÃO: SERVIÇOS */
.projetos-pag {
  padding: 40px 4%;
  text-align: center;
}

h1 {
  font-size: 50px;
  color: #04e9ac;
  font-weight: 400;
  margin-bottom: 40px;
}

.icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  text-align: center;
}

.service-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: transform 0.2s ease;
}

.service-item img:hover {
  transform: scale(1.1);
}

.service-item span {
  color: #ffffff;
  font-size: 16px;
}

/* SEÇÃO: DIFERENCIAIS */
.diferenciais-pag {
  background-color: #1f1f1f;
  padding: 60px 20px;
  text-align: center;
  margin-top: 100px;
}

.diferenciais-pag h1 {
  font-size: 40px;
  color: #04e9ac;
  margin-bottom: 30px;
}

.lista-diferenciais {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  color: #b0c4de;
  font-size: 18px;
  line-height: 1.8;
}

.lista-diferenciais li {
  margin-bottom: 20px;
}

.lista-diferenciais strong {
  color: #04e9ac;
  font-weight: 600;
}

/* SEÇÃO: FEEDBACKS */
.feedbacks-pag {
  background-color: #121212;
  padding: 60px 20px;
  text-align: center;
}

.feedbacks-pag h1 {
  font-size: 40px;
  color: #04e9ac;
  margin-bottom: 40px;
}

.feedbacks-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.feedback-item {
  background-color: #1f1f1f;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(4, 233, 172, 0.3);
  max-width: 280px;
  color: #b0c4de;
  font-size: 16px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feedback-item p {
  margin-bottom: 20px;
  font-style: italic;
}

.feedback-item span {
  font-weight: 600;
  color: #04e9ac;
  text-align: right;
}

/* SEÇÃO: SOBRE */
.sobre-pag {
  background-color: #121212;
  padding: 60px 20px;
  color: #b0c4de;
  text-align: center;
}

.sobre-pag h1 {
  font-size: 40px;
  color: #04e9ac;
  margin-bottom: 40px;
}

.sobre-container {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
}

/* ANIMAÇÃO DE FADE-IN COM INTERSECTION OBSERVER */
section {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

section.is-visible {
  opacity: 1;
}

/*footer*/

.site-footer {
  background-color: #1f1f1f;
  color: #b0c4de;
  padding: 50px 20px 20px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 10px;
}

.footer-logo p {
  max-width: 250px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links h3,
.footer-contact h3 {
  color: #04e9ac;
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #b0c4de;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #04e9ac;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
  color: #888;
}

/* RESPONSIVO */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo p {
    margin: 0 auto;
  }
}


/* RESPONSIVIDADE */
@media screen and (max-width: 1280px) {
  .social-icons {
    display: none;
  }

  .menu {
    position: absolute;
    top: 5vh;
    right: 0;
    width: 50vw;
    height: 92vh;
    background: #020313;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #79d1ff;
    transform: translateX(100%);
    transition: transform 0.2s ease-in;
  }

  .flex {
    flex-direction: column-reverse;
  }

  .txt h1,
  h1#projetos,
  h1#sobre {
    font-size: 30px;
  }

  .txt h2,
  #dev,
  #bio-txt {
    font-size: 15px;
  }

  .flex2 {
    flex-direction: column;
    height: auto;
  }

  .flex2 figure img {
    width: 300px;
    height: 200px;
  }

  .sobre-container {
    font-size: 16px;
  }
}/* IMPORTAÇÕES DE FONTES */
@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans+Pinstripe:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* RESET GERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CONFIGURAÇÕES GERAIS */
body {
  background-color: #141414;
  font-family: 'Montserrat', sans-serif;
  height: 100vh;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 1px;
}

::-webkit-scrollbar-thumb {
  background-color: #04e9ac;
}

/* LOGO */
#logo {
  width: 150px;
}

.boxeador img{
    width: 500px;
}

/* HEADER E NAV */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu li {
  font-size: 18px;
}

.menu a {
  color: white;
  text-decoration: none;
  font-weight: 400;
  transition: 0.2s;
}

.menu li:hover a,
.menu a:hover {
  color: #04e9ac;
  transform: scale(1.1);
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: white;
  text-decoration: none;
  transition: 0.2s;
}

.social-icons a:hover i {
  transform: scale(1.1);
  color: #04e9ac;
}

/* MENU MOBILE */
.mobile-menu {
  cursor: pointer;
  display: none;
}

.mobile-menu div {
  width: 32px;
  height: 2px;
  background: #b0c4de;
  margin: 8px;
  transition: 0.3s;
}

.mobile-menu.active .line1 {
  transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2 {
  opacity: 0;
}

.mobile-menu.active .line3 {
  transform: rotate(45deg) translate(-5px, -7px);
}

.menu.active {
  transform: translateX(0);
}

/* SEÇÃO: APRESENTAÇÃO */
.primeira-pag {
  padding: 40px 4%;
}

.flex {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  flex-direction: row;
}

.txt h1 {
  color: #04e9ac;
  font-size: 50px;
  font-weight: 400;
}

.txt h2 {
  color: #fff;
  font-weight: 400;
}

#dev {
  color: #b0c4de;
  margin-top: -40px;
}

#bio-txt {
  color: #b0c4de;
  font-size: 18px;
  margin: 30px 0 35px;
}

.fcnsc {
  padding: 20px 50px;
  border-radius: 10px;
  font-size: 15px;
  background: none;
  border: 2px solid #04e9ac;
  color: #04e9ac;
  font-weight: 700;
  transition: 0.2s;
}

.fcnsc:hover {
  transform: scale(1.1);
  color: #10845c;
  border-color: #10845c;
  cursor: pointer;
}

/* SEÇÃO: SERVIÇOS */
.projetos-pag {
  padding: 40px 4%;
  text-align: center;
}

h1 {
  font-size: 50px;
  color: #04e9ac;
  font-weight: 400;
  margin-bottom: 40px;
}

.icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
  text-align: center;
}

.service-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: transform 0.2s ease;
}

.service-item img:hover {
  transform: scale(1.1);
}

.service-item span {
  color: #ffffff;
  font-size: 16px;
}

/* SEÇÃO: DIFERENCIAIS */
.diferenciais-pag {
  background-color: #1f1f1f;
  padding: 60px 20px;
  text-align: center;
  margin-top: 100px;
}

.diferenciais-pag h1 {
  font-size: 40px;
  color: #04e9ac;
  margin-bottom: 30px;
}

.lista-diferenciais {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  color: #b0c4de;
  font-size: 18px;
  line-height: 1.8;
}

.lista-diferenciais li {
  margin-bottom: 20px;
}

.lista-diferenciais strong {
  color: #04e9ac;
  font-weight: 600;
}

/* SEÇÃO: FEEDBACKS */
.feedbacks-pag {
  background-color: #121212;
  padding: 60px 20px;
  text-align: center;
}

.feedbacks-pag h1 {
  font-size: 40px;
  color: #04e9ac;
  margin-bottom: 40px;
}

.feedbacks-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.feedback-item {
  background-color: #1f1f1f;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(4, 233, 172, 0.3);
  max-width: 280px;
  color: #b0c4de;
  font-size: 16px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feedback-item p {
  margin-bottom: 20px;
  font-style: italic;
}

.feedback-item span {
  font-weight: 600;
  color: #04e9ac;
  text-align: right;
}

/* SEÇÃO: SOBRE */
.sobre-pag {
  background-color: #121212;
  padding: 60px 20px;
  color: #b0c4de;
  text-align: center;
}

.sobre-pag h1 {
  font-size: 40px;
  color: #04e9ac;
  margin-bottom: 40px;
}

.sobre-container {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
}

/* ANIMAÇÃO DE FADE-IN COM INTERSECTION OBSERVER */
section {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

section.is-visible {
  opacity: 1;
}

/*footer*/

.site-footer {
  background-color: #1f1f1f;
  color: #b0c4de;
  padding: 50px 20px 20px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 10px;
}

.footer-logo p {
  max-width: 250px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links h3,
.footer-contact h3 {
  color: #04e9ac;
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #b0c4de;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #04e9ac;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
  color: #888;
}

/* RESPONSIVO */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo p {
    margin: 0 auto;
  }
}


/* RESPONSIVIDADE */
@media screen and (max-width: 1280px) {
  .social-icons {
    display: none;
  }

  .menu {
    position: absolute;
    top: 5vh;
    right: 0;
    width: 50vw;
    height: 92vh;
    background: #020313;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #79d1ff;
    transform: translateX(100%);
    transition: transform 0.2s ease-in;
  }

  .flex {
    flex-direction: column-reverse;
  }

  .txt h1,
  h1#projetos,
  h1#sobre {
    font-size: 30px;
  }

  .txt h2,
  #dev,
  #bio-txt {
    font-size: 15px;
  }

  .flex2 {
    flex-direction: column;
    height: auto;
  }

  .flex2 figure img {
    width: 300px;
    height: 200px;
  }

  .sobre-container {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  /* Ajusta layout das seções flexíveis */
  .flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .primeira-pag h1 {
    font-size: 36px;
  }

  .primeira-pag h2 {
    font-size: 18px;
    padding: 0 10px;
  }

  .boxeador img {
    width: 250px;
    margin-top: 20px;
  }

  .textos {
    width: 90%;
  }

  #projetos .projetos img,
  #diferenciais .diferenciais img {
    width: 80px;
    height: 80px;
  }

  .projetos, .diferenciais {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  footer .logo-footer {
    font-size: 1.2rem;
    text-align: center;
  }

  footer ul {
    text-align: center;
    padding: 0;
  }

  footer li {
    margin-bottom: 10px;
  }

  footer {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }

  .social-icons {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .mobile-menu {
    display: block;
  }

  .menu {
    display: none;
  }

  .menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background-color: #141414;
    padding: 20px;
    border-top: 1px solid #04e9ac;
  }
}
