/* ------------------------------ */
/* PÁGINA DE DESIGNS */
/* ------------------------------ */

.designs-page {
  padding: 160px 60px 80px;
  text-align: center;
}

.designs-title {
  font-size: 80px;
  margin-bottom: 10px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}

.designs-subtitle {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 50px;
}

/* GRID */
.designs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.design-card {
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s ease;
}

.design-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.design-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px #00e5ff55;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .designs-title {
    font-size: 60px;
  }

  .designs-page {
    padding: 140px 30px 60px;
  }
}

/* Página Designs */
.designs-page {
  padding: 160px 60px 80px;
  text-align: center;
}

.designs-title {
  font-size: 80px;
  margin-bottom: 10px;
}

.designs-subtitle {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 60px;
}

/* Títulos das categorias */
.category-title {
  font-size: 50px;
  margin: 60px 0 25px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  color: #00e5ff;
}

/* Grid */
.designs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Cards */
.design-card {
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s ease;
}

.design-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.design-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px #00e5ff55;
}

/* Responsivo */
@media (max-width: 900px) {
  .designs-title {
    font-size: 60px;
  }

  .category-title {
    font-size: 40px;
  }

  .designs-page {
    padding: 140px 30px 60px;
  }
}

/* MODAL - Tela cheia */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
}

/* Imagem dentro do modal */
.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 0 25px #00e5ff88;
  animation: zoom 0.3s ease;
}

/* Animação */
@keyframes zoom {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* Botão de fechar */
.close {
  position: absolute;
  top: 25px;
  right: 40px;
  color: #fff;
  font-size: 45px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #00e5ff;
  text-shadow: 0 0 12px #00e5ff;
}
