/* ============================================
   CANCILLER IMPERIAL IA — Chatbot Styles
   ============================================ */

.canciller-chatbot {
    position: fixed;
    bottom: 100px;
    right: 28px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

/* ---- Toggle Button ---- */
.canciller-toggle {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #D4AF37;
    background: #0a0a0a;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(212,175,55,.35);
    transition: transform .3s ease, box-shadow .3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    animation: canciller-pulse 3.5s ease-in-out infinite;
}

.canciller-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 32px rgba(212,175,55,.55);
}

@keyframes canciller-pulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(212,175,55,.35), 0 0 0 0 rgba(212,175,55,.35); }
    50%       { box-shadow: 0 4px 24px rgba(212,175,55,.35), 0 0 0 9px rgba(212,175,55,.0); }
}

.canciller-toggle-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    mix-blend-mode: lighten;
    display: block;
}

.canciller-toggle-label {
    position: absolute;
    right: calc(100% + 10px);
    background: rgba(10,10,10,.96);
    border: 1px solid rgba(212,175,55,.35);
    color: #D4AF37;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: .72rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: .06em;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity .25s, transform .25s;
    pointer-events: none;
    font-family: 'Rajdhani', sans-serif;
}

.canciller-toggle:hover .canciller-toggle-label {
    opacity: 1;
    transform: translateX(0);
}

.canciller-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 20px;
    height: 20px;
    background: #B8002E;
    border-radius: 50%;
    font-size: .68rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #080808;
    pointer-events: none;
}

.canciller-badge.hidden { display: none; }

/* ---- Panel ---- */
.canciller-panel {
    position: absolute;
    bottom: calc(100% + 14px);
    right: 0;
    width: 370px;
    max-height: 570px;
    background: #0d0d0d;
    border: 1px solid rgba(212,175,55,.28);
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0,0,0,.75), 0 0 40px rgba(212,175,55,.07);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    transform: scale(.85) translateY(16px);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s cubic-bezier(.175,.885,.32,1.275), opacity .3s ease;
}

.canciller-panel.open {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* ---- Header ---- */
.canciller-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 15px;
    background: rgba(212,175,55,.07);
    border-bottom: 1px solid rgba(212,175,55,.18);
    flex-shrink: 0;
}

.canciller-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.canciller-header-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(212,175,55,.55);
    mix-blend-mode: lighten;
    flex-shrink: 0;
    background: rgba(212,175,55,.05);
}

.canciller-name {
    font-family: 'Cinzel', serif;
    font-size: .82rem;
    font-weight: 700;
    color: #D4AF37;
    letter-spacing: .05em;
    line-height: 1.2;
}

.canciller-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .68rem;
    color: rgba(217,217,217,.5);
    margin-top: 2px;
}

.canciller-dot {
    width: 6px;
    height: 6px;
    background: #02D28B;
    border-radius: 50%;
    flex-shrink: 0;
    animation: canciller-blink 2s ease-in-out infinite;
}

@keyframes canciller-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: .35; }
}

.canciller-close {
    background: none;
    border: none;
    color: rgba(217,217,217,.4);
    font-size: 1.45rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 2px;
    transition: color .2s;
    margin-left: 8px;
}

.canciller-close:hover { color: #D4AF37; }

/* ---- Messages ---- */
.canciller-messages {
    flex: 1;
    overflow-y: auto;
    padding: 14px 14px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(212,175,55,.18) transparent;
}

.canciller-messages::-webkit-scrollbar { width: 3px; }
.canciller-messages::-webkit-scrollbar-track { background: transparent; }
.canciller-messages::-webkit-scrollbar-thumb { background: rgba(212,175,55,.2); border-radius: 3px; }

/* ---- Message bubbles ---- */
.canciller-msg {
    display: flex;
    gap: 7px;
    animation: c-msg-in .28s ease forwards;
    max-width: 100%;
}

@keyframes c-msg-in {
    from { opacity: 0; transform: translateY(7px); }
    to   { opacity: 1; transform: translateY(0); }
}

.canciller-msg-bot  { align-self: flex-start; align-items: flex-end; }
.canciller-msg-user { align-self: flex-end; flex-direction: row-reverse; }

.canciller-msg-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(212,175,55,.35);
    mix-blend-mode: lighten;
    flex-shrink: 0;
    background: rgba(212,175,55,.05);
}

.canciller-bubble {
    padding: 9px 13px;
    border-radius: 14px;
    font-size: .81rem;
    line-height: 1.55;
    max-width: 255px;
    word-break: break-word;
}

.canciller-msg-bot .canciller-bubble {
    background: rgba(212,175,55,.09);
    border: 1px solid rgba(212,175,55,.18);
    color: #D9D9D9;
    border-bottom-left-radius: 4px;
}

.canciller-msg-user .canciller-bubble {
    background: rgba(212,175,55,.18);
    border: 1px solid rgba(212,175,55,.32);
    color: #F0D060;
    border-bottom-right-radius: 4px;
}

/* Typing dots */
.canciller-typing .canciller-bubble {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 15px;
}

.canciller-typing-dot {
    width: 6px;
    height: 6px;
    background: rgba(212,175,55,.55);
    border-radius: 50%;
    animation: c-bounce 1.2s ease-in-out infinite;
}

.canciller-typing-dot:nth-child(2) { animation-delay: .15s; }
.canciller-typing-dot:nth-child(3) { animation-delay: .3s; }

@keyframes c-bounce {
    0%, 60%, 100% { transform: translateY(0); }
    30%            { transform: translateY(-5px); }
}

/* ---- Footer ---- */
.canciller-footer {
    border-top: 1px solid rgba(212,175,55,.13);
    padding: 10px 12px;
    flex-shrink: 0;
    background: rgba(6,6,6,.9);
}

.canciller-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.canciller-option-btn {
    background: rgba(212,175,55,.07);
    border: 1px solid rgba(212,175,55,.28);
    color: #D4AF37;
    padding: 6px 11px;
    border-radius: 18px;
    font-size: .73rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, border-color .2s, transform .15s;
    letter-spacing: .03em;
}

.canciller-option-btn:hover {
    background: rgba(212,175,55,.18);
    border-color: rgba(212,175,55,.55);
    transform: translateY(-1px);
}

.canciller-input-row {
    display: flex;
    gap: 7px;
    align-items: center;
}

.canciller-input {
    flex: 1;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(212,175,55,.22);
    border-radius: 22px;
    padding: 9px 15px;
    color: #D9D9D9;
    font-family: 'Inter', sans-serif;
    font-size: .8rem;
    outline: none;
    transition: border-color .2s;
}

.canciller-input:focus { border-color: rgba(212,175,55,.55); }
.canciller-input::placeholder { color: rgba(217,217,217,.28); }

.canciller-send {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212,175,55,.12);
    border: 1px solid rgba(212,175,55,.38);
    color: #D4AF37;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    transition: background .2s, transform .15s;
    flex-shrink: 0;
}

.canciller-send:hover { background: rgba(212,175,55,.26); transform: scale(1.06); }

/* ---- Summary Card ---- */
.canciller-summary {
    background: rgba(212,175,55,.05);
    border: 1px solid rgba(212,175,55,.22);
    border-radius: 11px;
    padding: 11px 13px;
    font-size: .77rem;
    line-height: 1.6;
    color: #D9D9D9;
    flex: 1;
    min-width: 0;
}

.canciller-summary-title {
    font-family: 'Cinzel', serif;
    font-size: .78rem;
    color: #D4AF37;
    font-weight: 700;
    margin-bottom: 7px;
    letter-spacing: .05em;
}

.canciller-summary-row {
    display: flex;
    gap: 6px;
    margin-bottom: 3px;
    align-items: flex-start;
}

.canciller-summary-label {
    color: rgba(212,175,55,.65);
    font-size: .7rem;
    min-width: 78px;
    flex-shrink: 0;
}

.canciller-summary-val { color: #D9D9D9; font-size: .77rem; }

.canciller-score-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .05em;
    margin-top: 7px;
    font-family: 'Rajdhani', sans-serif;
}

.canciller-score-hot  { background: rgba(184,0,46,.2);  border: 1px solid rgba(184,0,46,.45); color: #ff4d6d; }
.canciller-score-warm { background: rgba(255,211,34,.12); border: 1px solid rgba(255,211,34,.38); color: #FFD322; }
.canciller-score-cold { background: rgba(69,171,255,.12); border: 1px solid rgba(69,171,255,.38); color: #45ABFF; }

/* ---- CTA Buttons ---- */
.canciller-cta-row {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
}

.canciller-cta-wapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 10px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s;
    letter-spacing: .04em;
}

.canciller-cta-wapp:hover { background: #1da851; transform: translateY(-1px); }

.canciller-cta-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(212,175,55,.1);
    border: 1px solid rgba(212,175,55,.38);
    color: #D4AF37;
    border-radius: 9px;
    padding: 9px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s;
    letter-spacing: .04em;
}

.canciller-cta-gold:hover { background: rgba(212,175,55,.2); transform: translateY(-1px); }

/* ---- Products list ---- */
.canciller-products-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.canciller-product-item {
    background: rgba(212,175,55,.05);
    border: 1px solid rgba(212,175,55,.18);
    border-radius: 7px;
    padding: 8px 11px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.canciller-product-name  { font-size: .76rem; color: #D9D9D9; flex: 1; }
.canciller-product-price { font-size: .73rem; color: #D4AF37; font-weight: 700; white-space: nowrap; }

/* ---- Restart ---- */
.canciller-restart {
    background: none;
    border: none;
    color: rgba(212,175,55,.4);
    font-size: .7rem;
    cursor: pointer;
    text-align: center;
    width: 100%;
    padding: 3px;
    transition: color .2s;
    font-family: 'Inter', sans-serif;
}

.canciller-restart:hover { color: rgba(212,175,55,.8); }

/* ---- Stretch message wrapper ---- */
.canciller-msg-full {
    align-self: stretch;
    flex-direction: column;
}

/* ---- CTA Bubble ---- */
.canciller-cta-bubble {
    position: absolute;
    right: calc(100% + 14px);
    bottom: 4px;
    background: rgba(8,8,8,.97);
    border: 1px solid rgba(212,175,55,.42);
    border-radius: 12px;
    padding: 11px 30px 11px 14px;
    min-width: 198px;
    max-width: 222px;
    box-shadow: 0 8px 28px rgba(0,0,0,.55), 0 0 18px rgba(212,175,55,.07);
    cursor: pointer;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity .4s ease, transform .4s ease;
    pointer-events: none;
    user-select: none;
}

.canciller-cta-bubble.visible {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    animation: cta-float 3.2s ease-in-out 0.8s infinite;
}

.canciller-cta-bubble.c-hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    animation: none !important;
    transition: none !important;
}

@keyframes cta-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-5px); }
}

.canciller-cta-dismiss {
    position: absolute;
    top: 7px;
    right: 9px;
    background: none;
    border: none;
    color: rgba(212,175,55,.38);
    font-size: .95rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color .2s;
    z-index: 1;
}
.canciller-cta-dismiss:hover { color: #D4AF37; }

.canciller-cta-p1 {
    font-family: 'Cinzel', serif;
    font-size: .76rem;
    color: #D4AF37;
    font-weight: 700;
    letter-spacing: .04em;
    margin: 0 0 4px;
    line-height: 1.35;
    pointer-events: none;
}

.canciller-cta-p2 {
    font-size: .69rem;
    color: rgba(217,217,217,.55);
    margin: 0;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    pointer-events: none;
}

/* Arrow pointing right toward button */
.canciller-cta-tip {
    position: absolute;
    right: -7px;
    bottom: 18px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 7px solid rgba(212,175,55,.42);
    pointer-events: none;
}

/* ---- Mobile ---- */
@media (max-width: 480px) {
    .canciller-chatbot {
        bottom: 88px;
        right: 16px;
    }
    .canciller-panel {
        width: calc(100vw - 32px);
        right: -8px;
        max-height: 72vh;
    }
    .canciller-bubble { max-width: 220px; }
    .canciller-cta-p2 { display: none; }
    .canciller-cta-bubble {
        min-width: 158px;
        max-width: 175px;
        padding: 9px 26px 9px 12px;
    }
    .canciller-cta-p1 { font-size: .71rem; }
}

/* ============================================
   MODAL: FORMULARIO DE DIAGNÓSTICO IMPERIAL
   ============================================ */

.lead-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.lead-modal.is-open {
    opacity: 1;
    pointer-events: all;
}

.lead-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
}

.lead-modal-content {
    position: relative;
    background: var(--bg-3, #141414);
    border: 1px solid rgba(212, 175, 55, .28);
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .7), 0 0 60px rgba(212, 175, 55, .06);
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px 32px 32px;
    transform: translateY(20px) scale(.97);
    transition: transform .35s cubic-bezier(.22,.9,.41,1.05);
    scrollbar-width: thin;
    scrollbar-color: rgba(212,175,55,.2) transparent;
}

.lead-modal.is-open .lead-modal-content {
    transform: translateY(0) scale(1);
}

.lead-modal-content::-webkit-scrollbar { width: 5px; }
.lead-modal-content::-webkit-scrollbar-thumb { background: rgba(212,175,55,.2); border-radius: 3px; }

.lead-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(217, 217, 217, .45);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    transition: color .2s;
    z-index: 1;
}
.lead-modal-close:hover { color: #D4AF37; }

/* --- Header del modal --- */
.lead-modal-header { text-align: center; margin-bottom: 28px; }

.lead-modal-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .1);
    border: 1px solid rgba(212, 175, 55, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
    color: #D4AF37;
}

.lead-modal-title {
    font-family: var(--font-title, 'Cinzel', serif);
    font-size: 1.45rem;
    color: #D4AF37;
    margin: 0 0 8px;
    letter-spacing: .04em;
}

.lead-modal-subtitle {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: .85rem;
    color: rgba(217, 217, 217, .65);
    line-height: 1.55;
    margin: 0;
}

/* --- Formulario --- */
.lead-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lead-field { display: flex; flex-direction: column; gap: 6px; }
.lead-field--full { grid-column: 1 / -1; }

.lead-label {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: .78rem;
    color: rgba(217, 217, 217, .8);
    font-weight: 500;
    letter-spacing: .02em;
}

.lead-required { color: #D4AF37; margin-left: 2px; }
.lead-optional { color: rgba(217, 217, 217, .4); font-size: .73rem; }

.lead-input {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(212, 175, 55, .2);
    border-radius: 10px;
    padding: 11px 14px;
    color: rgba(217, 217, 217, .9);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: .84rem;
    outline: none;
    transition: border-color .2s, background .2s;
    width: 100%;
}

.lead-input:focus {
    border-color: rgba(212, 175, 55, .55);
    background: rgba(255, 255, 255, .07);
}

.lead-input::placeholder { color: rgba(217, 217, 217, .25); }

.lead-input.is-invalid { border-color: rgba(232, 0, 58, .6); }

.lead-textarea { resize: vertical; min-height: 110px; line-height: 1.55; }

/* Select personalizado */
.lead-select-wrapper { position: relative; }
.lead-select { appearance: none; -webkit-appearance: none; padding-right: 36px; cursor: pointer; }
.lead-select option { background: #141414; color: rgba(217,217,217,.9); }
.lead-select-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(212, 175, 55, .5);
    font-size: .75rem;
    pointer-events: none;
}

/* Contador de caracteres */
.lead-char-count {
    font-size: .7rem;
    color: rgba(217, 217, 217, .35);
    text-align: right;
    margin-top: -2px;
}

/* Mensajes de error */
.lead-error {
    font-size: .72rem;
    color: #ff4d6d;
    min-height: 14px;
    display: block;
    line-height: 1.3;
}

/* Consentimiento */
.lead-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.lead-checkbox {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #D4AF37;
    cursor: pointer;
}

.lead-consent-text {
    font-size: .78rem;
    color: rgba(217, 217, 217, .6);
    line-height: 1.5;
}

/* Botón de envío */
.lead-submit-btn {
    width: 100%;
    margin-top: 22px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #D4AF37 0%, #9A7D1A 100%);
    border: none;
    border-radius: 12px;
    color: #080808;
    font-family: var(--font-sub, 'Rajdhani', sans-serif);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .06em;
    cursor: pointer;
    transition: opacity .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(212, 175, 55, .3);
}

.lead-submit-btn:hover:not(:disabled) {
    opacity: .9;
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(212, 175, 55, .45);
}

.lead-submit-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
}

.lead-form-note {
    text-align: center;
    font-size: .71rem;
    color: rgba(217, 217, 217, .3);
    margin-top: 10px;
}

/* Estado de éxito */
.lead-success {
    text-align: center;
    padding: 20px 0;
}

.lead-success-icon {
    font-size: 3rem;
    color: #02D28B;
    margin-bottom: 16px;
}

.lead-success-title {
    font-family: var(--font-title, 'Cinzel', serif);
    font-size: 1.15rem;
    color: #D4AF37;
    margin: 0 0 12px;
    letter-spacing: .03em;
}

.lead-success-text {
    font-size: .85rem;
    color: rgba(217, 217, 217, .65);
    line-height: 1.6;
    margin: 0 0 22px;
}

.lead-success-close {
    background: rgba(212, 175, 55, .12);
    border: 1px solid rgba(212, 175, 55, .35);
    color: #D4AF37;
    border-radius: 10px;
    padding: 10px 28px;
    font-family: var(--font-sub, 'Rajdhani', sans-serif);
    font-weight: 700;
    font-size: .88rem;
    cursor: pointer;
    letter-spacing: .04em;
    transition: background .2s;
}
.lead-success-close:hover { background: rgba(212, 175, 55, .22); }

/* Banner de error global */
.lead-form-error-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(184, 0, 46, .12);
    border: 1px solid rgba(184, 0, 46, .4);
    border-radius: 10px;
    padding: 12px 16px;
    margin-top: 16px;
    font-size: .82rem;
    color: #ff4d6d;
}

/* Botón CTA en el chatbot para abrir el formulario */
.canciller-cta-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(212,175,55,.15) 0%, rgba(154,125,26,.12) 100%);
    border: 1px solid rgba(212, 175, 55, .45);
    color: #D4AF37;
    border-radius: 9px;
    padding: 9px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    letter-spacing: .04em;
    width: 100%;
}
.canciller-cta-form:hover {
    background: linear-gradient(135deg, rgba(212,175,55,.25) 0%, rgba(154,125,26,.2) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212,175,55,.2);
}

/* --- Responsive del modal --- */
@media (max-width: 600px) {
    .lead-modal-content {
        padding: 28px 18px 24px;
        border-radius: 16px;
        max-height: 95vh;
    }
    .lead-form-grid { grid-template-columns: 1fr; }
    .lead-field--full { grid-column: 1; }
    .lead-modal-title { font-size: 1.2rem; }
}
