/* papel/css/boda/boda_19.css
   Perla y Seda — lujo seda oscura con perlas champagne y acentos dorados suaves, sin recuadro centrado. */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;500;600;700&display=swap');

.boda19-card {
    --boda19-bg: #1c1b1a;
    --boda19-ink: #f5f0e6;
    --boda19-accent: #c7a35d;
    --boda19-metal: #e8dcc8;
    --boda19-soft: rgba(245, 240, 230, 0.14);
    --boda19-charcoal: #121110;
    --boda19-silk: #2a2826;
    isolation: isolate;
    overflow: hidden;
    color: var(--boda19-ink);
    background:
        radial-gradient(ellipse at 22% 10%, rgba(232, 220, 200, 0.16), transparent 42%),
        radial-gradient(ellipse at 78% 88%, rgba(199, 163, 93, 0.12), transparent 38%),
        radial-gradient(ellipse at 50% 48%, rgba(245, 240, 230, 0.08), transparent 58%),
        linear-gradient(168deg, var(--boda19-charcoal) 0%, var(--boda19-silk) 36%, #232120 68%, var(--boda19-bg) 100%);
}

.boda19-fondo {
    filter: saturate(0.82) contrast(1.06) brightness(0.78);
}

.boda19-velo {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at center, transparent 36%, rgba(8, 6, 4, 0.35) 100%),
        radial-gradient(circle at 24% 16%, rgba(232, 220, 200, 0.1), transparent 28%),
        radial-gradient(circle at 76% 78%, rgba(199, 163, 93, 0.1), transparent 32%),
        radial-gradient(circle at 58% 42%, rgba(245, 240, 230, 0.08), transparent 20%),
        linear-gradient(210deg, rgba(18, 17, 16, 0.35) 0%, rgba(42, 40, 38, 0.28) 54%, rgba(245, 240, 230, 0.06) 100%);
    pointer-events: none;
}

.boda19-decor {
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.42));
    opacity: 0;
    animation: boda19DecorIn 920ms ease 180ms both;
}

.boda19-decor--uno {
    right: 32px;
    top: 26px;
    width: 102px;
    transform: rotate(6deg);
    transform-origin: 100% 0;
    opacity: 0.86;
}

.boda19-decor--dos {
    left: 28px;
    right: auto;
    bottom: 38px;
    width: 96px;
    transform: rotate(-8deg);
    transform-origin: 0 100%;
    opacity: 0.84;
}

.boda19-contenido {
    position: absolute;
    left: 36px;
    top: 74px;
    width: 286px;
    min-height: 470px;
    z-index: 7;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 28px 20px;
    text-align: left;
    color: var(--boda19-ink);
    background: transparent;
}



.boda19-titulo,
.boda19-nombres,
.boda19-fecha,
.boda19-hora,
.boda19-lugar,
.boda19-mensaje,
.boda19-divisor {
    position: relative;
    margin: 0;
    opacity: 0;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42), 0 0 1px rgba(0, 0, 0, 0.35);
    animation: boda19TextoIn 720ms cubic-bezier(0.2, 0.72, 0.24, 1) both;
}

.boda19-titulo {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--boda19-accent);
    animation-delay: 240ms;
}

.boda19-nombres {
    max-width: 100%;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(38px, 8.7vw, 52px);
    font-weight: 500;
    line-height: 0.94;
    letter-spacing: -0.025em;
    color: var(--boda19-ink);
    animation-delay: 340ms;
}

.boda19-divisor {
    width: 78%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin: 4px 0 2px;
    color: var(--boda19-metal);
    animation-delay: 430ms;
}

.boda19-divisor span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
}

.boda19-divisor i {
    width: 9px;
    height: 9px;
    display: block;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: rgba(232, 220, 200, 0.35);
}

.boda19-fecha {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.08em;
    color: var(--boda19-ink);
    animation-delay: 520ms;
}

.boda19-hora,
.boda19-lugar {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.08em;
    color: #e6dcc8;
}

.boda19-hora {
    animation-delay: 600ms;
}

.boda19-lugar {
    max-width: 270px;
    animation-delay: 660ms;
}

.boda19-mensaje {
    max-width: 280px;
    margin-top: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    line-height: 1.42;
    color: #eee4d4;
    animation-delay: 740ms;
}

@keyframes boda19TextoIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes boda19DecorIn {
    from {
        opacity: 0;
        translate: 0 16px;
    }

    to {
        opacity: 0.95;
        translate: 0 0;
    }
}

/* Segunda pasada premium: marco visible y textura de papel realista. */
.boda19-marco {
    position: absolute;
    inset: 26px;
    z-index: 3;
    pointer-events: none;
    border: 1px solid rgba(232, 220, 200, 0.46);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 30%, rgba(255, 255, 255, 0.10) 68%, transparent),
        linear-gradient(90deg, transparent, rgba(199, 163, 93, 0.08), transparent);
    box-shadow:
        inset 0 0 0 6px rgba(255, 255, 255, 0.12),
        inset 0 0 0 7px rgba(199, 163, 93, 0.18),
        inset 0 0 34px rgba(245, 240, 230, 0.08),
        0 18px 42px rgba(0, 0, 0, 0.10);
}

.boda19-contenido::before {
    content: '';
    position: absolute;
    inset: -22px -18px;
    z-index: -1;
    width: auto;
    height: auto;
    left: auto;
    bottom: auto;
    transform: none;
    border: 1px solid rgba(199, 163, 93, 0.24);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(12, 22, 42, 0.58), rgba(18, 17, 16, 0.16)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.20), transparent 46%, rgba(255, 255, 255, 0.10));
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
    opacity: 0.88;
    filter: none;
}

.boda19-decor {
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.18));
}

.boda19-decor--uno {
    left: auto;
    right: 32px;
    top: 30px;
    bottom: auto;
    width: 104px;
    max-width: 24%;
    transform: rotate(8deg);
    transform-origin: 100% 0;
    opacity: 0.86;
}

.boda19-decor--dos {
    right: auto;
    left: 32px;
    top: auto;
    bottom: 34px;
    width: 94px;
    max-width: 22%;
    transform: rotate(-7deg);
    transform-origin: 0 100%;
    opacity: 0.84;
}

/* Paridad miniatura: colores explicitos para que html2canvas no convierta el marco a gris. */
.boda19-marco {
    border: 1px solid rgba(232, 220, 200, 0.46);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 30%, rgba(255, 255, 255, 0.06) 68%, transparent),
        linear-gradient(90deg, transparent, rgba(199, 163, 93, 0.08), transparent);
    box-shadow:
        inset 0 0 0 5px rgba(255, 255, 255, 0.1),
        inset 0 0 0 6px rgba(199, 163, 93, 0.18),
        0 18px 42px rgba(0, 0, 0, 0.12);
}

.boda19-contenido::before {
    border-color: rgba(199, 163, 93, 0.24);
    background: rgba(12, 22, 42, 0.4);
}

.boda19-card {
    background: #121a2a;
}

.boda19-velo,
.boda19-marco {
    background: transparent;
}
