/* ------------------------------------------
   Hilos Invisibles — Modo Singularidad (final)
   Fondo azul-vino oscuro, limpio y elegante
   ------------------------------------------ */

body.cancion {
    background: radial-gradient(
        circle at center,
        rgba(30, 45, 70, 0.7) 0%,      /* centro azul suave */
        rgba(18, 25, 40, 0.9) 50%,     /* azul profundo */
        rgba(8, 10, 14, 1) 100%        /* bordes casi negros */
    );
    padding: 30px 40px;
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

/* Texto general forzado a ser claro */
.nota-texto,
.nota-texto p,
.nota-texto h1,
.nota-texto * {
    color: #f3e8d8 !important;
}

/* Contenedor principal */
.nota-texto {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 10px;
}

/* Título de canción */
.titulo-cancion {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #f8eee1 !important;
    margin-bottom: 16px;
}

/* Imagen a la derecha */
.foto-derecha {
    float: right !important;
    width: 320px !important;
    max-width: 40% !important;
    height: auto;
    margin: 0 0 20px 30px !important;
    border-radius: 8px;
    box-shadow: 0 0 28px rgba(0, 0, 0, 0.55);
}

/* Botón */
.boton {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(245, 230, 203, 0.15);
    border: 1px solid rgba(245, 230, 203, 0.3);
    color: #f9efe2 !important;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}

.boton:hover {
    background: rgba(245, 230, 203, 0.3);
    box-shadow: 0 0 10px rgba(245, 230, 203, 0.4);
}

/* ==========================================
   SECCIÓN DE LETRA — ESTILO ELEGANTE
   ========================================== */

.seccion-letra {
    text-align: center;
    margin-top: 70px;
    padding-top: 40px;
    border-top: 1px solid rgba(240, 225, 200, 0.25);
}

.seccion-letra .titulo-letra {
    font-weight: bold;
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: #f8eee1 !important;
    font-family: 'Playfair Display', serif;
}

.seccion-letra .dedicatoria {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1rem;
    color: #f3e8d8 !important;
}

.seccion-letra .texto-letra {
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.85;
    font-size: 1.05rem;
    color: #f3e8d8 !important;
    white-space: normal;
}

.seccion-letra .estrofa {
    margin-bottom: 28px;
}
