/* ------------------------------
   GALERÍA – MAKE UP VARTIZ
------------------------------ */

/* CONTENEDOR INTERNO */
.gallery-section {
  margin: 120px auto 60px;
  max-width: 900px;
  text-align: left;
  padding: 0 20px;
  color: #fff;
}

/* TÍTULO PRINCIPAL */
.gallery-title {
  font-family: var(--font-title, "Marcellus", serif);
  font-size: 2.2rem;
  color: var(--accent, #d4a373);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

/* CATEGORÍAS */
.gallery-category {
  margin-bottom: 40px;
  padding-bottom: 25px;
  border-bottom: 1px solid #333;
}

.gallery-category h3 {
  font-family: var(--font-title, "Marcellus", serif);
  font-size: 1.6rem;
  margin-bottom: 15px;
  letter-spacing: 0.3px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ICONOS EN TÍTULOS */
.gallery-category h3 i {
  color: var(--accent, #d4a373);
  font-size: 1.4rem;
}

/* LISTAS */
.gallery-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gallery-list li {
  font-size: 1.1rem;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ICONOS EN LISTAS */
.gallery-list li i {
  color: var(--accent, #d4a373);
  font-size: 1.1rem;
}

/* ENLACES */
.gallery-list li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s ease;
}

.gallery-list li a:hover {
  color: var(--accent, #d4a373);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 1.8rem;
  }

  .gallery-category h3 {
    font-size: 1.4rem;
  }

  .gallery-list li {
    font-size: 1rem;
  }
}

.portfolio-page {
  padding-top: 60px; /* Ajuste perfecto para tu header fijo */
}
