


/* CONTAINER */
.catalog {
  padding: 30px;
  background: transparent;
  width: 100%;
  margin: auto;
}

.catalog-container{
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;

}

aside {
  width: 10%;
  padding: 15px 8px;
  border-radius: 10px;
  background: linear-gradient(145deg, #1e1e2f, #23233a);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  color: white;
  
}

/* TÍTULOS */
aside h6 {
  font-size: 11px;
  color: #818cf8;
  text-transform: uppercase;
  margin: 10px 6px 5px;
}

/* LISTA */
aside ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* LINKS */
aside a {
  display: block;
  padding: 6px 8px;
  margin: 3px 0;

  font-size: 12px;
  border-radius: 6px;

  color: #e5e7eb;
  text-decoration: none;

  transition: 0.2s;
}

/* HOVER */
aside a:hover {
  background: rgba(99, 102, 241, 0.12);
  color: #a5b4fc;
  transform: translateX(3px);
}

/* DIVISOR */
aside hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 8px 0;
}
/* TÍTULO */
.catalog-title {
  font-size: 32px;
  margin: 40px 0 30px;
  font-weight: 800;
  color: #0f172a;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

/* Linha decorativa abaixo */
.catalog-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.catalog-grid {
  width: 80%;
  display: flex;
  justify-content: left;
  gap: 22px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* CARD */
.catalog-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;

  padding: 20px;
  text-decoration: none;
  border-radius: 18px;
  height: 200px;
  width: 20%;
  
  background: linear-gradient(145deg, #1e1e2f, #23233a);
  border: 1px solid rgba(255, 255, 255, 0.05);

  transition: all 0.25s ease;
  color: #fff;
  
  overflow: hidden;
}

/* Glow suave de fundo */
.catalog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.25), transparent 60%);
  opacity: 0;
  transition: 0.3s;
}

/* HOVER */
.catalog-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(79, 70, 229, 0.6);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.catalog-card:hover::before {
  opacity: 1;
}

/* ÍCONE */
.card-icon {
  min-width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #4f46e5, #6366f1);
  border-radius: 14px;

  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
  transition: 0.25s;
}

.catalog-card:hover .card-icon {
  transform: scale(1.1) rotate(-3deg);
}

.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

/* TEXTO */
.card-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}

.card-sub {
  font-size: 13px;
  color: #a1a1aa;
}

/* Micro interação no texto */
.catalog-card:hover .card-sub {
  color: #c7c7ff;
}

/* ===================== */
/* 🔥 BLOCOS (NOVO PADRÃO) */
/* ===================== */

.catalog-box {
  margin-top: 25px;
  padding: 20px;

  background: #1e1e2f;
  border-radius: 18px;

  border: 1px solid #2d2d44;
}

/* USER MAIS COMPACTO */
.user-box {
  padding: 15px 18px;
}

/* TÍTULO BLOCO */
.catalog-box h2 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
}

/* TÍTULO MENOR NO USER */
.user-box h2 {
  font-size: 16px;
  margin-bottom: 10px;
}

/* LINKS */
.catalog-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* LINK */
.catalog-link {
  padding: 10px 14px;
  border-radius: 10px;

  background: #2a2a40;
  color: #fff;
  text-decoration: none;

  font-size: 14px;
  transition: all 0.2s ease;
}

.catalog-link:hover {
  background: #4f46e5;
  transform: translateY(-2px);
}

/* LINK MENOR (USER) */
.user-box .catalog-link {
  padding: 8px 12px;
  font-size: 13px;
}


/* RESPONSIVO */
@media (max-width: 1300px){
  


 .catalog-card{
  width: 30%;
 }
}

@media (max-width: 1025px){
  aside{
    width: 15%;
  }
  .catalog-grid{
    width: 80%;
    
  }
  .catalog-card{
    width: 48%;
  }
}


@media (max-width: 600px) {
  .catalog {
    padding: 20px;
  }

  .catalog-title {
    font-size: 22px;
  }
  .catalog-container{
    flex-direction: column;
  }
  aside{
    width: 50%;
    text-align: center;
    margin: auto;
  }
  .catalog-grid{
    width: 100%;
  }
  .catalog-card{
    width: 100%;
  }
  
}