.contenedornotas {
  width: 85%;
  border: 0px solid white;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}
.mis_notas
{
	justify-content: center;
	align-items: center;
	position: relative;
	text-align: center;
}

.notaanimada {
	display: inline-block;
	width: 350px;
	height: 400px;
	border: 0px solid red;
	padding: 10px;
	margin: 10px;
	position: relative;
	overflow: hidden;
}

/* Estado inicial oculto */
.notaanimada.nota-oculta {
	opacity: 0;
	transform: translateY(60px) scale(0.9);
}

/* Animacion de entrada */
.notaanimada.nota-enter {
	animation: notaEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes notaEntrance {
	0% {
		opacity: 0;
		transform: translateY(60px) scale(0.9);
	}
	60% {
		opacity: 1;
		transform: translateY(-10px) scale(1.02);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.notain {
	width: 100%;
	height: max-content;
	border: 0px solid black;
	background-color: rgba(255, 255, 255, 0.45);
	box-shadow: 5px 5px 5px 2px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	border-radius: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Hover en la tarjeta interior */
.notaanimada.nota-hover .notain {
	transform: translateY(-8px) scale(1.03);
	box-shadow: 8px 12px 20px 4px rgba(0, 0, 0, 0.4);
	background-color: rgba(255, 255, 255, 0.85);
}

.notaanimada.nota-hover .foto_nota {
	transform: scale(1.08);
	filter: brightness(1.1);
}

.notaanimada.nota-hover .titulo {
	color: #b44721;
}

@media screen and (max-width: 992px) {
  .notaanimada {
    width: calc(90% - 10px);
  }
}

.foto_nota {
	width: 100%;
	transition: transform 0.4s ease, filter 0.4s ease;
}

.titulo {
	font-size: 18pt;
	padding: 10px;
	transition: color 0.3s ease;
}

.tituloNotas {
	font-size: 5vw;
	text-align: center;
	font-weight: bold;
	font-variant: all-petite-caps;
}

/* Link ocupa toda la tarjeta */
.notaanimada a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.notaanimada .notain {
	position: relative;
	z-index: 1;
}
