:root {
        --navy:   #1d366e;
        --navy2:  #162a55;
        --gold:   #d4af37;
        --gold2:  #b8961f;
        --light:  #f0f3f9;
        --white:  #ffffff;
        --border: #dce3f0;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body {
        font-family: 'Montserrat', sans-serif;
        background: var(--light);
        color: #1a1a2e;
        min-height: 100vh;
    }
    .cnt-hero {
        background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 60%, #2a4a8a 100%);
        padding: 60px 20px 70px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .cnt-hero::before {
        content: '';
        position: absolute; inset: 0;
        background: repeating-linear-gradient(45deg, transparent, transparent 40px,
        rgba(212,175,55,.04) 40px, rgba(212,175,55,.04) 41px);
        pointer-events: none;
    }
    .cnt-hero .eyebrow {
        display: inline-block;
        font-size: 10px; font-weight: 600;
        letter-spacing: 4px; text-transform: uppercase;
        color: var(--gold);
        border: 1px solid rgba(212,175,55,.4);
        padding: 5px 16px; border-radius: 2px;
        margin-bottom: 18px; position: relative;
    }
    .cnt-hero h1 {
        font-family: 'Cormorant Garamond', 'Georgia', serif;
        font-size: clamp(32px, 5vw, 52px); font-weight: 700;
        color: #fff; line-height: 1.15; margin-bottom: 12px; position: relative;
    }
    .cnt-hero h1 span { color: var(--gold); }
    .cnt-hero p { color: rgba(255,255,255,.6); font-size: 13px; font-weight: 300; position: relative; }
    .cnt-gold-line { width: 50px; height: 2px; background: var(--gold); margin: 16px auto; }
    
       /* MODAL PERSONALIZADO */
.modal-content {
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* HEADER */
.modal-header {
    background: linear-gradient(135deg, var(--navy2), var(--navy));
    color: var(--white);
    border-bottom: none;
}

.modal-header .modal-title {
    font-weight: 600;
    letter-spacing: 1px;
}

.modal-header .close {
    color: #fff;
    opacity: .8;
}

/* BODY */
.modal-body {
    padding: 25px;
}

/* INPUTS */
.modal-body select,
.modal-body input {
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 13px;
    padding: 10px;
    transition: .3s;
}

.modal-body select:focus,
.modal-body input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212,175,55,.15);
    outline: none;
}

/* ICONO BUSCAR */
.modal-body .fa-search {
    color: var(--navy);
    cursor: pointer;
    transition: .3s;
}
.modal-body .fa-search:hover {
    color: var(--gold);
}

/* FOTO */
.modal-body img {
    border-radius: 8px;
    border: 2px solid var(--border);
}

/* NOMBRE */
.modal-body p {
    font-weight: 600;
    color: var(--navy);
    margin-top: 10px;
}

/* FOOTER */
.modal-footer {
    background: #f9fbff;
    border-top: 1px solid var(--border);
    padding: 15px 25px;
}

/* ESTADO */
.estado-ok {
    color: #1bbf5c;
    font-weight: 600;
}

/* QR */
.modal-footer img {
    border: 1px solid var(--border);
    padding: 5px;
    border-radius: 6px;
}

/* ANIMACIÓN */
.modal.fade .modal-dialog {
    transform: scale(0.9);
    transition: .25s ease;
}
.modal.fade.show .modal-dialog {
    transform: scale(1);
}