/* ===== Cores Base ===== */
:root {
  --primary-color: #205c6d;
  --background-color: #f4f4f5;
  --text-dark: #18181b;
  --gray-100: #f3f4f6;
  --gray-300: #d1d5db;
}

/* ===== Estrutura Principal ===== */
body {
  font-family: "Inter", Arial, sans-serif;
  background-color: var(--background-color);
  margin: 0;
  padding: 0;
  color: var(--text-dark);

  /* background-image: url("./img/wallpapers.png");
  height: 400px;
  background-size: cover;
  background-position: center; */
}

.pagina {
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.projeto-container {
  max-width: 1200px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.projeto {
  display: flex;
  flex-wrap: wrap;
}

/* ===== Coluna de Texto ===== */
.coluna-texto {
  position: relative;
  flex: 3;
  padding: 3rem;
}

.numero-fundo {
  position: absolute;
  top: -30px;
  left: -10px;
  font-size: 200px;
  font-weight: 900;
  color: rgba(32, 92, 109, 0.05);
  pointer-events: none;
}

.coluna-texto p {
  font-family: "Inter", sans-serif;
  text-align: justify;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1rem;
}

.ferramentas {
  flex-direction: row;
}

.rodape {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .rodape {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

p.ferramentas-label {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 0;
}

p.ferramentas-nomes {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0;
}

/* ===== Coluna de Imagens ===== */
.coluna-imagens {
  background-color: var(--gray-100);
  flex: 2;
  padding: 2rem;
  align-content: center;
}

.titulo-imagens {
  color: var(--primary-color);
  font-family: "Inter", sans-serif;
  text-align: end;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  display: block;
  /* border-bottom: 2px solid var(--primary-color); */
}

.grid-imagens {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.8rem;
}

.card-imagem {
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--gray-300);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.card-imagem img {
  border: 5px solid #fff;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* .card-imagem:hover img {
  transform: scale(1.05);
} */

.legenda {
  text-align: end;
  font-size: 0.75rem;
  color: #6b7280;
  font-style: italic;
  padding-top: 0.5rem;
  margin-top: 1rem;
}

/* ===== Responsividade ===== */
@media (max-width: 900px) {
  .projeto {
    flex-direction: column;
  }

  .coluna-texto,
  .coluna-imagens {
    width: 100%;
  }

  .coluna-texto {
    padding: 2rem;
  }

  .numero-fundo {
    font-size: 120px;
  }
}

@media (max-width: 600px) {
  .coluna-texto,
  .coluna-imagens {
    padding: 1.5rem;
  }

  .numero-fundo {
    font-size: 80px;
  }
}
