@charset "UTF-8";
/* CSS Document */
.notas-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.8rem;
            align-items: start;
        }

        /* tarjeta tipo nota adhesiva */
        .nota {
            background: #fffcf0;
            background-image: radial-gradient(circle at 10% 20%, rgba(255, 245, 200, 0.2) 0%, transparent 30%);
            border-radius: 20px 20px 20px 5px;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04), 0 0 0 1px #ece6d8 inset;
            padding: 1.5rem 1.6rem 1.8rem;
            transition: transform 0.1s ease, box-shadow 0.15s ease;
            backdrop-filter: blur(1px);
            border-bottom: 6px solid #d9d0b5;
            position: relative;
            word-break: break-word;
        }

        /* ligero efecto papel */
        .nota::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(145deg, rgba(255, 250, 235, 0.5) 0%, transparent 60%);
            pointer-events: none;
            border-radius: inherit;
        }

        .nota:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.02), 0 0 0 1px #d6cdb6 inset;
            border-bottom-color: #b8aa8a;
        }

        /* título de la nota: <h3> */
        .nota h3 {
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            color: #2c2418;
            margin-bottom: 0.7rem;
            padding-bottom: 0.4rem;
            border-bottom: 2px dashed #d6cbbc;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Segoe UI', 'Georgia', serif;
        }

        /* pequeño adorno tipográfico */
        .nota h3::before {
            content: "📌";
            font-size: 1rem;
            opacity: 0.7;
            filter: drop-shadow(0 1px 0 #b8a78a);
            margin-right: 0.1rem;
        }

        /* párrafos dentro de la nota */
        .nota p {
            font-size: 0.96rem;
            line-height: 1.6;
            color: #2b241b;
            background: rgba(250, 245, 230, 0.2);
            padding: 0.2rem 0.1rem;
            margin-top: 0.1rem;
            text-align: justify;
            hyphens: auto;
        }

        /* cita / referencia al final (estilo sutil) */
        .nota p:last-of-type {
            margin-bottom: 0;
        }

        .nota p em, .nota p i {
            font-style: italic;
            color: #5e4d37;
        }

        .nota p strong {
            font-weight: 500;
            color: #3f3221;
        }



        /* responsivo: 2 columnas en tablets, 1 en móviles */
        @media (max-width: 1024px) {
            .notas-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 640px) {
            .notas-grid {
                grid-template-columns: 1fr;
                gap: 1.2rem;
            }
            .nota {
                padding: 1.2rem 1.2rem 1.5rem;
            }
            .nota h3 {
                font-size: 1.1rem;
            }
        }

        /* pequeños toques de color por nota (aleatorio sutil) */
        .nota:nth-child(3n+1) { background: #fcf7ed; border-bottom-color: #c7b69b; }
        .nota:nth-child(3n+2) { background: #faf5ea; border-bottom-color: #b9ab90; }
        .nota:nth-child(3n+3) { background: #f8f2e5; border-bottom-color: #ccbca2; }

        /* mantener jerarquía visual */
        .nota h3 + p {
            margin-top: 0.2rem;
        }
