body {
  margin: 0;
  font-family: 'Baloo 2', sans-serif;
  background: linear-gradient(180deg, #ffeef6, #fff3fa, #fff3fa);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  animation: fadeIn 1.5s ease-in;
}

/* Notepad */
.notepad {
  background: white;
  width: 120%;
  max-width: 1200px;
  margin: 40px auto; /* centra horizontalmente */
  transform: translateX(-10%); /* corrige el centro visual */
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(255, 182, 193, 0.4);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column; /* <— esto mantiene a todo dentro del flujo vertical */
  align-items: stretch;
}


/* Agujeritos */
.holes {
  display: flex;
  justify-content: start;
  gap: 25px;
  padding: 12px 25px;
  background: white;
}

.holes span {
  display: block;
  width: 14px;
  height: 14px;
  background: #ffe0ef;
  border: 2px solid #f5a6c6;
  border-radius: 50%;
  box-shadow: inset 0 0 6px rgba(255, 128, 171, 0.4);
}

/* Banner */
.banner {
  position: relative;
  height: 300px; /* un poquito más grande */
  border-bottom: 2px solid #ffd6e9;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(95%);
}

/* Contenido del banner */
.banner-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
/* Sección rosita de navegación */
.nav-section {
  background: linear-gradient(180deg, #ffd3e7 0%, #ffe5f1 100%);
  border-top: 2px solid #ffcce1;
  border-bottom: 2px solid #ffd8eb;
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

/* Contenedor de botones */
.nav-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Botones con texto */
.nav-buttons button {
  background: white;
  border: 2px solid #ffb6d9;
  border-radius: 25px;
  padding: 8px 24px;
  font-family: 'Baloo 2', sans-serif;
  font-size: 1rem;
  color: #ff7fb5;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(255, 160, 190, 0.25);
}

/* Hover efecto brillante */
.nav-buttons button:hover {
  transform: translateY(-2px);
  background: #ffe6f1;
  border-color: #ffa4ce;
  box-shadow: 0 4px 10px rgba(255, 150, 190, 0.35);
}

/* Título */
.banner-title {
  font-size: 2.8rem;
  color: white;
  -webkit-text-stroke: 1.2px #ff8fc2;
  text-shadow: 0 0 10px rgba(255, 192, 203, 0.4);
  margin: 0;
  transition: all 0.3s ease;
}

.banner-title:hover {
  transform: scale(1.07);
  text-shadow: 0 0 15px #ff8fc2, 0 0 30px #ff8fc2;
}

/* Iconitos */
.banner-icons {
  display: flex;
  gap: 12px;
}

.banner-icons button {
  background: white;
  border: 2px solid #ffc0d6;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(255, 160, 190, 0.3);
}

.banner-icons button:hover {
  transform: scale(1.1);
  background: #ffe6f1;
  border-color: #ffa4ce;
}

.banner-icons svg {
  color: #ff8bb4;
  width: 22px;
  height: 22px;
}

/* Contenido */
.content {
  padding: 30px 40px;
}

.content h2 {
  color: #ff6fae;
  margin-top: 0;
}

.content p {
  color: #555;
  line-height: 1.7;
}
