* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  font-size: 18px;
}


html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(17, 17, 17);
  position: fixed;
  z-index: 1000;
  height: 60px;
  padding: 0 1.5rem;
  gap: 10px;
  width: 100%;
}

.entrar-botao {
  display: flex;
  padding: 5px 15px;
  background-color: #00aee0;
  color: #fff;
  border: none;
  font-weight: bold;
  transition: color 0.3 ease;
  cursor: pointer;
}

.entrar-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  z-index: 999;
}

.entrar-botao:hover {
  background-color: #0095D6;
}

.entrar-menu p {
  font-size: 15px;
}

.entrar-menu {
  position: absolute;
  top: 180%;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  display: none;
  min-width: 150px;
  z-index: 999;
}

.entrar-menu a {
  display: inline-block;
  padding: 5px 0;
  color: #333;
}

.entrar-menu a:hover {
  background-color: #f2f2f2;
  color: #0095D6;
}

.mobile-entrar2 {
  display: none;
}

.entrar-botao2 {
  display: flex;
  padding: 5px 15px;
  background-color: #00aee0;
  color: #fff;
  border: none;
  font-weight: bold;
  transition: color 0.3 ease;
  cursor: pointer;
}

.entrar-wrapper2 {
  position: relative;
  display: flex;
  align-items: flex-start;
  z-index: 999;
}

.entrar-botao2:hover {
  background-color: #0095D6;
}

.entrar-menu2 p {
  font-size: 12px;
}

.entrar-menu2 {
  position: absolute;
  top: 180%;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  display: none;
  min-width: 150px;
  z-index: 999;
}

.entrar-menu2 a {
  display: inline-block;
  padding: 5px 0;
  color: #333;
}

.entrar-menu2 a:hover {
  background-color: #f2f2f2;
  color: #0095D6;
}

.navbar {
  display: flex;
  align-items: center;
  flex: 1;
}

/* Ajusta lista de navegação */
.navbar .lista {
  gap: 15px;
  font-size: 16px;
}

.entrar-wrapper li {
  list-style: none;
}

.lista {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex: 1;
  margin: 0;
  padding: 0;
  font-size: 90%;
  flex-wrap: wrap;
  align-items: center;
}

/* Botão hamburguer */
.hamburguer {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: white;
}

.lista-group {
  color: white;
  transition: color 1.0 ease;
}

.lista-group:hover {
  color: #0095D6;
}

.logo img {
  width: 110px;
  height: 3rem;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}


a {
  text-decoration: none;
}

ul {
  list-style: none;
  justify-content: center;

}

a,
button,
input,
.form-group2 input {
  transition: all 0.3s ease-in-out;
}

.lista span {
  color: #00aee0;
}

@media (max-width: 1020px) {
  header {
    width: 100%;
    max-width: none;
    flex-direction: row;
    justify-content: space-between;
    height: 60px;
  }

  .lista span {
    background-color: #00aee0;
    color: white;
    width: 100%;
    padding: 10px;
    font-weight: bold;
    border-radius: 0;
  }


  .lista {
    display: none;
    position: absolute;
    top: 120%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 95%;
    flex-direction: column;
    border-radius: 0 0 12px 12px;
    padding: 10px 0;
    gap: 10px;
    z-index: 999;
    background-color: black;
  }



  .logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

  .lista li {
    width: 100%;
    list-style: none;
  }


  .lista a {
    display: block;
    width: 100%;
    padding: 10px 18px;
    text-decoration: none;
    box-sizing: border-box;
  }

  .lista a.active,
  .lista a span {
    display: block;
    width: 100%;
    padding: 10px 18px;
    background: #00aee0;
    color: #fff;
    box-sizing: border-box;
  }

  .mobile-entrar {
    display: none;
  }

  .hamburguer-wrapper {
    display: flex;
    margin-left: auto;
  }

  .hamburguer {
    display: flex;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
  }

  .mobile-entrar2 {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding: 0 18px;
  }

  .entrar-wrapper2 {
    width: 100%;
    max-width: 90px;
  }

  .entrar-botao2 {
    width: 100%;
    text-align: left;
    padding: 10px 18px;
    background-color: #00aee0;
    color: #fff;
    border: none;
    font-weight: bold;
    cursor: pointer;
    align-items: flex-start;
  }

  .entrar-botao2:hover {
    background-color: #0095D6;
  }


  .entrar-menu2 p {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #00aee0;
  }

  .entrar-menu2 a {
    display: block;
    padding: 0;
    font-size: 14px;
    color: #333;
  }

  .entrar-menu2 a:hover {
    color: #00aee0;
    background: none;
  }

  .entrar-menu2 a {
    display: inline-block;
    padding: 0;
    font-size: 16px;
    color: #333;
  }
}

@media (min-width: 1600px) {
  .lista-group {
    font-size: 1.1rem;
  }

  .logo img {
    width: 210px;
    height: 4rem;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .entrar-botao {
    font-size: 20px;
  }

  .lista span {
    font-size: 1.1rem;
  }
}


/* Conteúdo principal */
.main-container {
  padding-top: 100px;
  padding-bottom: 2rem;
  background: linear-gradient(to bottom, white, #f8f8f8);
}

.container-desenvolvimento {
  display: flex;
  gap: 220px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 30px;
  text-align: left;
}

.img-desenvolvimento {
  flex: 1;
  min-width: 280px;
  max-width: 700px;
  display: flex;
  justify-content: center;

}

.img-desenvolvimento img {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

.blocos-texto {
  display: flex;
  flex-direction: column;
  gap: 50px;
  min-width: 300px;
}

.desenvolvimento-pag1,
.desenvolvimento-pag2 {
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 10px;
  width: 100%;
  gap: 10px;
  display: flex;
  flex-direction: column;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.desenvolvimento-pag1:hover,
.desenvolvimento-pag2:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.8);
}

.desenvolvimento-pag1 h2,
.desenvolvimento-pag2 h2 {
  display: flex;
  gap: 20px;
  font-size: 25px;
  color: #023a5f;
  margin-bottom: 20px;
}

.desenvolvimento-pag1 li,
.desenvolvimento-pag2 li {
  line-height: 1.8;
  color: #333;
  font-size: 18px;
}

.desenvolvimento-pag1 i,
.desenvolvimento-pag2 i {
  font-size: 30px;
}

@media (min-width: 2500px) {

  .desenvolvimento-pag1,
  .desenvolvimento-pag2 {
    padding: 3rem;
  }

  .desenvolvimento-pag1 h2,
  .desenvolvimento-pag2 h2,
  .desenvolvimento-pag1 i,
  .desenvolvimento-pag2 i {
    font-size: 2rem;
  }

  .desenvolvimento-pag1 li,
  .desenvolvimento-pag2 li {
    font-size: 1.5rem;
  }
}

/* Bloco 3 - formulário */
.container {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  justify-content: center;
  margin-top: 5rem;
}

.titulo {
  padding: 40px 20px;
  width: 100%;
  max-width: 500px;
  color: #0056b3;
  box-shadow: 0px 0px 30px #023a5f;
  border-radius: 5px;
  text-align: center;
  background-color: rgb(238, 233, 233);
}

.text-section {
  flex: 1;
  min-width: 320px;
  max-width: 500px;
  cursor: default;
}

.form-projeto {
  flex: 1.2;
  min-width: 360px;
  max-width: 600px;
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  cursor: default;
}


.form-projeto h2 {
  font-size: 1.8rem;
  color: #004080;
  margin-bottom: 20px;
  text-align: center;
}

.formulario {
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: default;
}

.formulario label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #374151;
}

.formulario input,
.formulario textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #ffffff;
  transition: border 0.3s;
}

.formulario input:focus,
.formulario textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.4);
}


.formulario textarea {
  resize: vertical;
  min-height: 120px;
}

.formulario button {
  background-color: #00aee0;
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.formulario button:hover {
  background-color: #008dc7;
}

@media (min-width: 2500px) {
  .text-section h2 {
    font-size: 1.3rem;
  }

  .form-projeto h2 {
    font-size: 2rem;
  }
}

/* Rodapé */
.footer {
  /* background-color: #074b79; */
  color: #888;
  padding: 40px 20px 20px;
  background-color: white;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;

}

.footer-logo img {
  width: 100%;
  max-width: 145px;
  height: 2rem;
  object-fit: contain;
}

.footer-logo p {
  margin-top: 10px;
  color: #333;
  font-size: 14px;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 10px;
  color: #333;
  font-size: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #333;
  margin-right: 10px;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #00aee0;
}

.footer-propaganda {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}



.footer-solucoes h4 {
  margin-bottom: 10px;
  color: #333;
}

.footer-solucoes ul {
  list-style: none;
  padding: 0;
}

.footer-solucoes ul li a {
  display: flex;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
}

.footer-solucoes ul li {
  margin-bottom: 8px;
}

.footer-solucoes ul li a:hover {
  color: #00aee0;
}

.footer-parcerias h4 {
  margin-bottom: 10px;
  color: #333;
}

.footer-parcerias ul {
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}

.footer-parcerias ul li a {
  display: flex;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
  margin-bottom: 8px;
}

.footer-parcerias ul li {
  margin-bottom: 8px;
}

.footer-parcerias ul li a:hover {
  color: #00aee0;
}

.footer-social .social-icons a {
  color: #333;
  margin-right: 10px;
  font-size: 20px;
  transition: color 0.3s ease;
}

.footer-social .social-icons a:hover i.fa-instagram {
  color: #cc2366;
}

.footer-social .social-icons a:hover i.fa-facebook-f {
  color: #1877f2;
}

.footer-social .social-icons a:hover i.fa-linkedin-in {
  color: #0077b5;
}

.footer-social .social-icons a:hover i.fa-youtube {
  color: #ff0000;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  color: white;
  background: radial-gradient(circle at center, #005fa3, #2A3D50);
  padding: 15px;
  border-radius: 10px;
}

@media (min-width: 1400px) {
  .footer-logo img {
    height: 3rem;
  }

  .footer-propaganda h4 {
    font-size: 1.5rem;
  }

  .footer-links ul li a,
  .footer-solucoes ul li a,
  .footer-parcerias ul li a {
    font-size: 1.15rem;
  }

  .footer-bottom p {
    font-size: 22px;
  }

  .footer-social .social-icons a,
  .footer-social h4 {
    font-size: 25px;
  }

}

@media (max-width: 768px) {
  .footer {
    width: 100%;
  }

  .footer-propaganda {
    text-align: center;
  }


}

@media (min-width: 2500px) {
  .footer p {
    font-size: 1.15rem;
  }

  .footer-social .social-icons i {
    font-size: 1.15rem;
  }
}

.separator {
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, #00aee0, #007bb8);
  border: none;
  margin: 40px 0;
}

/* === Etapas do Desenvolvimento === */
.etapas {
  background: #f9fafb;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
  cursor: default;
  border-radius: 10px;
  margin-top: 10%;
  flex-wrap: wrap;
}

.etapas h2 {
  font-size: 2rem;
  color: #111827;
  margin-bottom: 40px;
}

.etapas-lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.etapa {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.etapa:hover {
  transform: translateY(-5px);
}

.etapa i {
  font-size: 2rem;
  color: #2563eb;
  margin-bottom: 15px;
}

.etapa h3 {
  font-size: 1.2rem;
  color: #1f2937;
  margin-bottom: 10px;
  border-bottom: 3px solid #007bff;
}

.etapa p {
  color: #4b5563;
  font-size: 0.95rem;
}


/* === Depoimentos === */
.depoimentos {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  border-radius: 10px;
  margin-top: 10%;
}

.depoimentos:hover {
  transform: translateY(-6px);
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.4);
}

.depoimentos h2 {
  font-size: 2rem;
  color: #111827;
  margin-bottom: 40px;
  border-bottom: 3px solid #007bff;
}

.depoimento {
  max-width: 1300px;
  margin: 0 auto 30px;
  font-style: italic;
  color: #374151;
  position: relative;
}

.depoimentos i {
  font-size: 30px;
  color: #004aad;
  margin-bottom: 10px;
  display: block;
}


.depoimento p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.container2 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 60px;
  text-align: left;
}


@media (min-width: 1400px) {
  .etapas {
    padding: 30px;
  }

  .etapa h3 {
    font-size: 1.5rem;
  }

  .etapa p {
    font-size: 1.3rem;
  }

  .depoimentos {
    padding: 30px;
  }

  .depoimento p {
    font-size: 1.5rem;
  }

  .depoimento cite {
    font-size: 1.3rem;
  }

  .container2 {
    gap: 160px;
    align-items: center;
    justify-content: center;
  }
}

.transicao-esfumada {
  height: 80px;
  background: linear-gradient(to bottom, #f8f8f8, white)
}

.transicao-esfumada2 {
  height: 80px;
  background: linear-gradient(to bottom, white, #f8f8f8)
}

.container-principal {
  display: flex;
  min-height: 400px;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.cabecalho {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 80px 60px;
  max-width: 1500px;
  margin: 0 auto;
  gap: 200px;
}

.cabecalho-texto {
  flex: 1 1 400px;
}

.cabecalho-texto h1 {
  font-size: 2.5rem;
  color: #004080;
  margin-bottom: 20px;
}

.cabecalho-texto p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
}

.cabecalho-imagem {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: flex;
  margin-right: 5%;
  height: 24rem;
  max-width: 400px;
}

.btn-solucoes {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -85px;
  margin-bottom: 60px;
}

.btn-saibamais {
  display: inline-block;
  background: linear-gradient(90deg, #0077b5, #00aaff);
  padding: 16px 40px;
  width: 450px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-saibamais:hover {
  background: linear-gradient(90deg, #005f91, #008ecc);
  transform: translateY(-3px);
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1000px) {

  /* telefone  */
  .cabecalho {
    flex-direction: column;
    gap: 40px;
    padding: 80px;
    text-align: center;
  }

  .cabecalho h1 {
    font-size: 2rem;
    max-width: 350px;
  }

  .cabecalho-texto p {
    font-size: 1.2rem;
    max-width: 350px;
  }

  .cabecalho-imagem {
    height: 0.5rem;
    object-fit: contain;
    width: 10%;
    margin: 0 auto;
  }

  .cabecalho-imagem img {
    height: 14rem;
  }

  .main-container {
    padding: 20px 10px;
  }

  .btn-solucoes {
    margin-top: -200px;
  }

  .btn-saibamais {
    width: 350px;
  }
}

@media (min-width: 1800px) {
  .container-principal {
    padding: 110px;
  }

  .cabecalho-texto h1 {
    font-size: 2.2rem;
    display: flex;
  }

  .cabecalho-texto p {
    font-size: 1.2rem;
    max-width: 1800px;
  }

  .cabecalho-imagem {
    height: 25rem;
    margin-left: 0 auto;
    width: 100%;
  }
}

@media (min-width: 1400px) {
  .container-principal {
    height: 90vh;
  }
}

@media (min-width: 2500px) {
  .cabecalho {
    padding: 100px;
  }

  .cabecalho-texto h1 {
    font-size: 3.3rem;
  }

  .cabecalho-texto p {
    font-size: 1.5rem;
  }

  .btn-saibamais {
    font-size: 1.3rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.out {
  opacity: 0;
  transform: translateY(-30px);
}

.sucessos {
  padding: 80px 10%;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.sucessos h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #023a5f;
}

.sucessos p {
  font-size: 16px;
  margin-bottom: 40px;
  color: #333;
}

.logos-empresa {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.logos-empresa img {
  max-height: 30px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logos-empresa img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-4px);
}

@media (max-width: 2200px) {
  .sucessos {
    justify-content: center;
    align-items: center;
  }

  .sucessos h2 {
    font-size: 3rem;
  }

  .sucessos p {
    font-size: 1.5rem;
  }

  .logos-empresa img {
    max-height: 60px;
  }
}

@media (min-width: 2500px) {
  .sucessos h2 {
    font-size: 2.5rem;
  }

  .sucessos p {
    font-size: 1.5rem;
  }

  .logos-empresa img {
    max-height: 70px;
  }
}

.areas {
  padding: 90px 80px;
  text-align: center;
  margin-top: 10%;
}

.areas h2 {
  font-size: 2rem;
  color: #042d7a;
  margin-bottom: 30px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  flex: 1 1 300px;
  max-width: 350px;
  min-width: 280px;
}


.card {
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 12px;
  width: 350px;
  max-width: 1300px;
  margin: 0 auto;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #023a5f;
}

.card p {
  line-height: 1.2;
  color: #333;
}

.card:hover {
  transform: translateY(-6px);
}

@media (min-width: 2500px) {
  .areas h2 {
    font-size: 2.5rem;
  }

  .card h3 {
    font-size: 1.5rem;
  }

  .card p {
    font-size: 1.3rem;
    line-height: 1.4;
  }
}

.projects {
  padding: 80px 10%;
  text-align: center;
  margin-top: 80px;
}

.projects h2 {
  font-size: 2rem;
  color: #004aad;
  margin-bottom: 30px;
}

.grid-projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.project {
  flex: 1 1 300px;
  max-width: 350px;
  min-width: 280px;
}

.project {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

.project h3 {
  color: #023a5f;
  margin-bottom: 10px;
  font-size: 20px;
}

.project p {
  color: #333;
}

.project:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(56, 52, 240, 0.3);
}

@media (min-width: 2500px) {
  .projects h2 {
    font-size: 2.5rem;
  }

  .project h3 {
    font-size: 1.5rem
  }

  .project p {
    font-size: 1.3rem;
    line-height: 1.4;
  }
}

.dev-detailed {
  display: grid;
  grid-template-columns: repeat(4, minmax(300px, 1fr));
  gap: 20px;
  padding: 60px 20px;
  max-width: 1700px;
  margin: 0 auto;
}

.dev-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(17, 17, 17, 0.08);
  grid-template-columns: repeat(4, 1fr);
}

.dev-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 17px rgba(10, 10, 10, 0.1);
}

.dev-item i {
  font-size: 2.8rem;
  margin-bottom: 15px;
  display: block;
  color: #0066cc;
}

.dev-item h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #222;
}

.dev-item p {
  margin-bottom: 15px;
  color: #555;
  font-size: 1rem;
}

.dev-item ul {
  list-style: none;
  padding-left: 0;
}

.dev-item ul li {
  margin: 8px 0;
  padding-left: 25px;
  position: relative;
  font-size: 1rem;
  color: #444;
}

.dev-item ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0066cc;
}

@media (max-width: 1300px) {
  .dev-detailed {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dev-detailed {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 2500px) {

  .dev-item p,
  .dev-item strong {
    font-size: 1.4rem;
  }

  .dev-item ul li {
    font-size: 1.3rem;
  }
}

.performances {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
}

.text-section-2,
.linguagens {
  flex: 1;
  min-width: 500px;
  align-items: center;
  justify-content: center;
}

.performances h2 {
  font-size: 2.2em;
  color: #222;
  margin-bottom: 15px;
  padding: 40px 20px;
  display: flex;
  gap: 20px;
}

.performances p {
  max-width: 1000px;
  color: #555;
  line-height: 1.6;
}

.performances i {
  font-size: 2rem;
  color: #0776BB;
  grid-template-columns: repeat(5, minmax(100px, 1fr));
}

/* Media query para mobile */
@media (max-width: 600px) {
  .performances {
    flex-direction: column;
    gap: 20px;
    max-width: 100vw;
    padding: 0 8px;
    overflow-x: hidden;
  }

  .text-section-2,
  .linguagens {
    min-width: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .performances h2 {
    font-size: 1.2em;
    padding: 20px 8px;
    gap: 10px;
  }

  .performances p {
    max-width: 100%;
    font-size: 0.95em;
    padding: 0 2px;
  }
}

/* Linguagens */
.titulo-linguagens {
  font-size: 1.8em;
  margin-bottom: 30px;
  color: #222;
  flex-wrap: wrap;
}

.linguagens {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  align-items: center;
}

.linguagem {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  width: 90px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  flex-direction: column;
}

.linguagem:hover {
  transform: scale(1.1);
}

.linguagem img {
  align-items: center;
  justify-content: center;
}

.linguagem p {
  font-size: 0.7rem;
}

.performances ul {
  padding: 40px 20px;
  margin-top: 30px;
  line-height: 1.5;
  align-items: center;
  justify-content: center;
}

.performances li {
  font-style: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.performances li:hover {
  transform: translateY(-6px);
}

.text-green-300 {
  --tw-text-opacity: 1;
  color: #004aad;
}

.btn-pagcard {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00aee0;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .linguagens {
    gap: 10px;
    padding: 0 5px;
  }

  .linguagem {
    width: 70px;
    height: 60px;
    padding: 15px;
    font-size: 0.7rem;
  }

  .linguagem p {
    font-size: 0.6rem;
  }

  .performances ul {
    padding: 10px 0;
    margin-top: 10px;
  }
}