body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  background: linear-gradient(to right, #ff84a7, #a2e39c);
  color: #000000;
}

header {
  background: transparent;
  display: flex;
  justify-content: center;
}

.navigation {
  background-color: #FEB5CA;
  border-radius: 4px;
  padding: 14px 4px;
  position: sticky;
  min-height: auto;
  bottom: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.navigation :hover{
  color: #000000;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.loading-message {
  font-size: 1.2rem;
  color: var(--claro);
  margin-top: 10px;
  transition: opacity 0.3s ease;
}

@keyframes pulse {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}


.nav-list a {
  text-decoration: none;
  color: #444;
  font-weight: bold;
}

.navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
}

a {
  text-decoration: none;
  color: #444;
}

.repo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}


.repo-card {
  background-color: #fce4ec;
  border-radius: 16px;
  padding: 1.2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.repo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.repo-card h2 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
  color: #333;
  font-weight: 600;
}

.repo-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.repo-button {
  align-self: flex-start;
  background: #FEB5CA;
  color: #000;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s;
}

.repo-button:hover {
  background: #fd9fb9;
}

.ver-mais-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: #FEB5CA;
    color: #000;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 1rem;
    margin-top: 20px;
}

.ver-mais-btn:hover {
    background-color: #fd9fb9;
}

#load-more {
    padding: 0.6rem 1.2rem;
    background-color: #FEB5CA;;
    color: #000;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin: 20px auto;
    transition: 0.3s ease-in-out;
    box-shadow: 0 8px 20px rgba(136, 33, 54, 0.6);
    cursor: pointer;
}

#load-more:hover {
    background-color: #cf5884;
    color: white;
}
