@import url('./styleMyLinks.css');

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  background-color: #a1909050;
  margin-block-end: 100px;
  padding-bottom: 100px;
  margin: 0;

}

.container {
  width: 500px;
  margin: auto;
  padding: 10px;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.imgCod {
  width: 350px;
  max-width: 100%;
  height: auto;
}

.conteudoPrincipal {
  width: 50%;
  margin: auto;
  padding: 10px;
  text-align: center, justify;
  margin-top: 50px;
}

.imgPrincipal {
  padding-right: 2% !important;
  width: 150px;
}

.textPrincipal {
  text-align: justify;
  padding-left: 2% !important;
  margin-bottom: 15%;
  color: #2c3e50;
  background-color: #e5e2e2;
  /* cinza suave e retro */
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.tituloConteudo {
  text-align: center;
  border-radius: 15px;
}


footer {
  position: relative;
  bottom: 0;
  width: 100%;
  height: 100px;
  text-align: center;
  padding-top: 10%;
}

p {
  font-size: 14px;
  margin: 0;
}

.buton:hover {
  background-color: #D3D3D3;
  border: 2px solid #000;
}

@media screen and (max-width: 400px) {

  .container,
  .conteudoPrincipal {
    margin-top: 10px;
    padding-top: 10px;
  }

  .tituloConteudo {
    font-size: 16px;
  }

  .imgCod {
    width: 80vw;
  }
}

div {
  background-color: #C0C0C0;
  border: 2px solid #808080;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  padding: 10px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  text-align: center;
}

div:hover {
  border: 2px solid #000;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin: 32px 0 24px 0;
}

.tech-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 32px 0;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
}

.tech-cards-container::before,
.tech-cards-container::after {
  content: none !important;
}

/* Linha suave acima das tecnologias */
.tech-section-hr {
  border: none;
  border-top: 1.5px solid #b0b0b0;
  margin: 32px 0 24px 0;
}

.tech-card {
  background: #e5e2e2;
  /* cinza suave e retro */
  border: 2px solid #222;
  border-radius: 6px;
  /* borda levemente arredondada */
  width: 270px;
  min-height: 180px;
  padding: 18px 20px;
  box-sizing: border-box;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

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

.tech-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08em;
  color: #2d2d6a;
}

.tech-card h3 {
  font-size: 1.08em;
  margin-bottom: 10px;
  color: #222;
  font-weight: bold;
}

.tech-card ul {
  list-style: disc inside;
  padding-left: 0;
  margin: 0;
}

.tech-card li {
  margin-bottom: 6px;
  color: #222;
  font-size: 1em;
  display: flex;
  align-items: center;
  word-break: break-word;
  margin-bottom: 0.5rem;
  color: #34495e;
}

/* Ajuste para telas de alta resolução */
@media screen and (min-width: 1920px) {
  body {
    font-size: 18px;
  }

  .textPrincipal {
    max-width: 1000px;
  }
}

/* Ajuste para melhorar a legibilidade em monitores grandes */
@media screen and (min-width: 2560px) {
  body {
    font-size: 20px;
  }

  .textPrincipal {
    max-width: 1200px;
  }
}

.midia-section {
  background: #e5e2e2;
  /* cinza suave e retro */
  border-radius: 10px;
  box-shadow: 0 2px 8px #0001;
  padding: 24px 18px 18px 18px;
  margin: 24px auto 24px auto;
  max-width: 600px;
  text-align: center;
}

.fav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.08em;
}

.fav-list li {
  margin-bottom: 10px;
  color: #222;
  font-size: 1.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
}

a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #2980b9;
  text-decoration: none;
}