* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: rgb(255, 255, 255);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* --- SIDEBAR --- */
.sidebar {
  position: fixed;
  top: 20px;
  left: 20px;
  height: calc(100vh - 40px);
  width: 260px;
  padding: 30px 20px;
  z-index: 1000;

  background: rgba(0, 0, 0, 0.15);           /* Fondo negro muy sutil */
  backdrop-filter: blur(10px);              /* Blur elegante */
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05); /* Borde ultra sutil */
  box-shadow: none;                         /* Quita sombra gris */
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar li {
  margin-bottom: 20px;
}

.sidebar a {
  color: #000000;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  display: block;
  padding: 12px 18px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.sidebar a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ff41a8;
  padding-left: 22px;
}

.sidebar a::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #ff41a8;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}

.sidebar a:hover::before {
  opacity: 1;
}
.image55-section {
  margin-left: 260px;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  animation: fadeIn 1.2s ease-in-out both;
}

.B55-width-image {
  width: 100%;
  max-width: 1600px;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.B55-width-image:hover {
  transform: scale(1.015);
  box-shadow: 0 25px 60px rgba(90, 0, 150, 0.7)
;
}
.image56-section {
  margin-left: 260px;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  animation: fadeIn 1.2s ease-in-out both;
}

.B56-width-image {
  width: 100%;
  max-width: 1600px;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.B56-width-image:hover {
  transform: scale(1.015);
  box-shadow: 0 25px 60px rgba(90, 0, 150, 0.7)
;
}