/* ── Google Font ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Design Tokens ── */
:root {
    --mp-blue: rgb(6, 132, 200);
    --mp-teal: rgb(42, 218, 178);
    --mp-blue-mid: rgb(4, 105, 160);
    --mp-white-10: rgba(255, 255, 255, 0.1);
    --mp-white-15: rgba(255, 255, 255, 0.15);
    --mp-white-05: rgba(255, 255, 255, 0.05);
    --mp-white-07: rgba(255, 255, 255, 0.07);
    --mp-bg-grad: linear-gradient(135deg, rgb(8, 20, 50) 0%, rgb(6, 60, 110) 40%, rgb(4, 80, 100) 70%, rgb(8, 30, 60) 100%);
    --mp-btn-grad: linear-gradient(135deg, var(--mp-blue) 0%, var(--mp-blue-mid) 50%, var(--mp-teal) 100%);
    --mp-radius-lg: 24px;
    --mp-radius-md: 12px;
    --mp-transition: 0.25s;
    --mp-max-w: 520px;
}

/* ── Shared orb pseudo-element (used by wrapper & ventajas) ── */
#mp-analisis-wrapper::before,
#mp-analisis-wrapper::after,
#mp-ventajas::before,
#mp-ventajas::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

/* ── Wrapper ── */
#mp-analisis-wrapper {
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
    background: var(--mp-bg-grad);
    border-radius: var(--mp-radius-lg);
    position: relative;
    overflow: hidden;
}

#mp-analisis-wrapper::before {
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 132, 200, .3) 0%, transparent 65%);
}

#mp-analisis-wrapper::after {
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(42, 218, 178, .2) 0%, transparent 65%);
}

/* ── Glass Card ── */
.mp-glass-card {
    background: var(--mp-white-07);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--mp-white-15);
    border-radius: var(--mp-radius-lg);
    padding: 40px;
    width: 100%;
    max-width: var(--mp-max-w);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .12);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mp-glass-card::before,
.mp-glass-card::after {
    display: none;
}

/* ── Form Header ── */
.mp-form-header {
    text-align: center;
    margin-bottom: 32px;
}

.mp-form-header .mp-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
    display: block;
}

.mp-form-header h2 {
    margin: 0 0 8px;
    font-size: 1.7em;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.5px;
}

.mp-form-header p {
    margin: 0;
    color: rgba(255, 255, 255, .6);
    font-size: .9em;
    line-height: 1.5;
}

/* ── Labels ── */
.mp-label {
    display: block;
    font-size: .78em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 8px;
}

/* ── Inputs ── */
.mp-input {
    width: 100%;
    padding: 13px 16px;
    background: var(--mp-white-07);
    border: 1px solid var(--mp-white-15);
    border-radius: var(--mp-radius-md);
    color: #fff;
    font-size: .95em;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    transition: border-color var(--mp-transition), background var(--mp-transition), box-shadow var(--mp-transition);
    outline: none;
}

.mp-input::placeholder {
    color: rgba(255, 255, 255, .3);
}

.mp-input:focus {
    border-color: rgba(6, 132, 200, .8);
    background: rgba(255, 255, 255, .11);
    box-shadow: 0 0 0 3px rgba(6, 132, 200, .2);
}

/* ── Error states ── */
.mp-input.mp-error,
.mp-dropzone.mp-error {
    border-color: rgba(248, 113, 113, .8);
    background: rgba(248, 113, 113, .07);
}

.mp-input.mp-error {
    box-shadow: 0 0 0 3px rgba(248, 113, 113, .18);
}

.mp-consent.error {
    border-color: rgba(248, 113, 113, .6);
    background: rgba(248, 113, 113, .06);
}

.mp-field-error {
    display: none;
    margin-top: 6px;
    font-size: .78em;
    color: rgb(248, 113, 113);
    font-weight: 500;
    padding-left: 2px;
}

.mp-field-error.visible {
    display: block;
}

@keyframes mp-shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

.mp-shake {
    animation: mp-shake .4s ease;
}

/* ── File Drop Zone ── */
.mp-dropzone {
    border: 2px dashed rgba(255, 255, 255, .2);
    border-radius: var(--mp-radius-md);
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color var(--mp-transition), background var(--mp-transition);
    background: rgba(255, 255, 255, .04);
    position: relative;
}

.mp-dropzone:hover,
.mp-dropzone.drag-over {
    border-color: rgba(6, 132, 200, .7);
    background: rgba(6, 132, 200, .08);
}

.mp-dropzone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.mp-dropzone-icon {
    font-size: 2em;
    display: block;
    margin-bottom: 8px;
}

.mp-dropzone-text {
    color: rgba(255, 255, 255, .55);
    font-size: .88em;
}

.mp-dropzone-text strong {
    color: rgba(255, 255, 255, .85);
}

.mp-dropzone-hint {
    font-size: .75em;
    color: rgba(255, 255, 255, .3);
    margin-top: 4px;
}

.mp-file-selected {
    display: none;
    color: var(--mp-teal);
    font-weight: 600;
    font-size: .9em;
    margin-top: 6px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 0 4px;
}

/* ── Field group ── */
.mp-field {
    margin-bottom: 20px;
}

/* ── Shared button base (submit + contratar hover lift) ── */
.mp-btn-submit,
.mp-btn-contratar {
    width: 100%;
    display: block;
    border-radius: var(--mp-radius-md);
    font-size: 1em;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: .5px;
    transition: transform .2s, box-shadow .2s;
    text-align: center;
    box-sizing: border-box;
    color: #fff;
}

.mp-btn-submit:hover:not(:disabled),
.mp-btn-contratar:hover {
    transform: translateY(-2px);
}

/* ── Submit Button ── */
.mp-btn-submit {
    padding: 15px;
    background: var(--mp-btn-grad);
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, opacity .2s;
    box-shadow: 0 4px 20px rgba(6, 132, 200, .45);
    position: relative;
    overflow: hidden;
}

.mp-btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .15) 0%, transparent 60%);
    border-radius: var(--mp-radius-md);
}

.mp-btn-submit:hover:not(:disabled) {
    box-shadow: 0 8px 30px rgba(6, 132, 200, .65);
}

.mp-btn-submit:active:not(:disabled) {
    transform: translateY(0);
}

.mp-btn-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none;
}

/* ── Loading Screen ── */
#mp-cargando {
    text-align: center;
    padding: 20px 0;
    display: none;
    width: 100%;
    max-width: var(--mp-max-w);
}

.mp-loading-title {
    font-size: 1.3em;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}

.mp-loading-sub {
    font-size: .85em;
    color: rgba(255, 255, 255, .45);
    margin: 0 0 24px;
}

/* Orbital */
.mp-orbital {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.mp-orbital-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.2em;
    animation: mp-pulse 2s ease-in-out infinite;
}

.mp-orbit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: mp-spin linear infinite;
}

.mp-orbit-1 {
    border-top-color: rgba(6, 132, 200, .9);
    border-right-color: rgba(6, 132, 200, .3);
    animation-duration: 1.8s;
}

.mp-orbit-2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-top-color: rgba(42, 218, 178, .9);
    border-left-color: rgba(42, 218, 178, .3);
    animation-duration: 2.4s;
    animation-direction: reverse;
}

.mp-orbit-3 {
    width: 55%;
    height: 55%;
    top: 22.5%;
    left: 22.5%;
    border-bottom-color: rgba(6, 132, 200, .5);
    border-right-color: rgba(42, 218, 178, .4);
    animation-duration: 1.2s;
}

/* Steps */
.mp-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.mp-steps li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 8px;
    font-size: .88em;
    color: rgba(255, 255, 255, .4);
    transition: all .4s ease;
    background: rgba(255, 255, 255, .03);
}

.mp-steps li.active {
    color: #fff;
    background: rgba(6, 132, 200, .15);
    border: 1px solid rgba(6, 132, 200, .4);
}

.mp-steps li.done {
    color: var(--mp-teal);
    background: rgba(42, 218, 178, .08);
    border: 1px solid rgba(42, 218, 178, .25);
}

.mp-step-icon {
    font-size: 1.1em;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.mp-step-spinner {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    border: 2px solid rgba(6, 132, 200, .3);
    border-top-color: var(--mp-blue);
    border-radius: 50%;
    animation: mp-spin .8s linear infinite;
}

/* ── Results Card ── */
.mp-result-card {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--mp-white-15);
    border-radius: var(--mp-radius-lg);
    padding: 36px;
    width: 100%;
    max-width: var(--mp-max-w);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
    animation: mp-fadeUp .7s ease forwards;
    display: none;
}

.mp-result-card h1 {
    font-size: 1.6em;
    font-weight: 800;
    color: #fff;
    margin: 0 0 24px;
    text-align: center;
}

.mp-situacion {
    background: var(--mp-white-05);
    border: 1px solid var(--mp-white-10);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 20px;
}

.mp-situacion h3 {
    font-size: .75em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .45);
    margin: 0 0 14px;
    font-weight: 600;
}

.mp-situacion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mp-situacion-item span {
    display: block;
    font-size: .72em;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 3px;
}

.mp-situacion-item strong {
    color: #fff;
    font-size: 1em;
}

.mp-situacion-item.full {
    grid-column: span 2;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 12px;
    margin-top: 4px;
}

.mp-precio-actual {
    color: #f87171 !important;
}

.mp-ahorro-badge {
    background: var(--mp-btn-grad);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(6, 132, 200, .45);
    position: relative;
    overflow: hidden;
}

.mp-ahorro-badge::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
}

.mp-ahorro-label {
    font-size: .75em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .8);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.mp-ahorro-amount {
    font-size: 3.2em;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .2);
}

.mp-ahorro-sub {
    font-size: .8em;
    color: rgba(255, 255, 255, .75);
    display: block;
    margin-top: 4px;
}

.mp-tarifa-info {
    margin-bottom: 24px;
}

.mp-tarifa-info h3 {
    color: #fff;
    font-size: 1.1em;
    font-weight: 700;
    margin: 0 0 6px;
}

.mp-tarifa-info .mp-compania {
    font-size: .8em;
    color: rgba(255, 255, 255, .5);
    font-weight: 400;
}

.mp-tarifa-info p {
    color: rgba(255, 255, 255, .6);
    font-size: .88em;
    line-height: 1.6;
    margin: 0;
}

.mp-explicacion {
    margin: 10px 0 0 !important;
    padding: 10px 14px !important;
    background: rgba(245, 158, 11, .12) !important;
    border-left: 3px solid rgba(245, 158, 11, .7) !important;
    border-radius: 0 8px 8px 0;
    font-size: .88em !important;
    color: rgba(255, 255, 255, .75) !important;
    font-style: italic;
    line-height: 1.6 !important;
}

/* ── CTA button (contratar) ── */
.mp-btn-contratar {
    padding: 16px;
    background: linear-gradient(135deg, var(--mp-teal) 0%, var(--mp-blue) 100%);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(42, 218, 178, .4);
}

.mp-btn-contratar:hover {
    box-shadow: 0 8px 30px rgba(42, 218, 178, .55);
}

/* ── Email Fallback ── */
.mp-email-card {
    background: rgba(42, 218, 178, .08);
    border: 1px solid rgba(42, 218, 178, .3);
    border-radius: 20px;
    padding: 36px;
    text-align: center;
    width: 100%;
    max-width: var(--mp-max-w);
    display: none;
    animation: mp-fadeUp .6s ease forwards;
}

.mp-email-card h3 {
    color: var(--mp-teal);
    font-size: 1.4em;
    margin: 0 0 12px;
}

.mp-email-card p {
    color: rgba(255, 255, 255, .65);
    font-size: .9em;
    line-height: 1.6;
    margin: 0 0 8px;
}

.mp-btn-volver {
    margin-top: 20px;
    padding: 12px 28px;
    background: var(--mp-white-10);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: .9em;
    cursor: pointer;
    transition: background .2s;
}

.mp-btn-volver:hover {
    background: rgba(255, 255, 255, .18);
}

/* ── Keyframes ── */
@keyframes mp-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes mp-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.12);
    }
}

@keyframes mp-fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

/* ── Consent Checkbox ── */
.mp-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    padding: 14px 16px;
    background: var(--mp-white-05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--mp-radius-md);
    transition: border-color var(--mp-transition);
}

.mp-consent input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--mp-blue);
    cursor: pointer;
}

.mp-consent-text {
    font-size: .82em;
    color: rgba(255, 255, 255, .65);
    line-height: 1.5;
}

.mp-consent-text a {
    color: var(--mp-teal);
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
}

.mp-consent-text a:hover {
    color: var(--mp-blue);
}

/* ── Privacy Modal ── */
#mp-privacy-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

#mp-privacy-overlay.open {
    display: flex;
}

#mp-privacy-modal {
    background: rgb(10, 25, 60);
    border: 1px solid var(--mp-white-15);
    border-radius: 20px;
    padding: 36px;
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
    animation: mp-fadeUp .3s ease;
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, .75);
    font-size: .88em;
    line-height: 1.7;
}

#mp-privacy-modal h2 {
    color: #fff;
    font-size: 1.2em;
    font-weight: 800;
    margin: 0 0 6px;
    padding-right: 36px;
}

#mp-privacy-modal .mp-modal-subtitle {
    color: var(--mp-teal);
    font-size: .8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: block;
}

#mp-privacy-modal h3 {
    color: #fff;
    font-size: .95em;
    font-weight: 700;
    margin: 24px 0 8px;
}

#mp-privacy-modal p,
#mp-privacy-modal li {
    color: rgba(255, 255, 255, .65);
    margin: 0 0 10px;
}

#mp-privacy-modal ul {
    padding-left: 20px;
    margin: 0 0 10px;
}

#mp-privacy-modal a {
    color: var(--mp-teal);
}

#mp-privacy-modal .mp-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: var(--mp-white-10);
    border: 1px solid var(--mp-white-15);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 1.1em;
    transition: background .2s;
    line-height: 1;
}

#mp-privacy-modal .mp-modal-close:hover {
    background: rgba(255, 255, 255, .2);
}

#mp-privacy-modal .mp-modal-footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--mp-white-10);
    font-size: .78em;
    color: rgba(255, 255, 255, .35);
}

/* ── Ventajas Section ── */
#mp-ventajas {
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin-top: 16px;
    box-sizing: border-box;
    background: var(--mp-bg-grad);
    border-radius: var(--mp-radius-lg);
    padding: 56px 48px 48px;
    position: relative;
    overflow: hidden;
}

#mp-ventajas::before {
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(6, 132, 200, .25) 0%, transparent 65%);
}

#mp-ventajas::after {
    bottom: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(42, 218, 178, .18) 0%, transparent 65%);
}

@media (max-width: 600px) {
    #mp-ventajas {
        padding: 40px 24px 36px;
    }
}

/* Ventajas header */
.mp-ventajas-header {
    text-align: center;
    margin-bottom: 40px;
}

.mp-ventajas-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(6, 132, 200, .25) 0%, rgba(42, 218, 178, .2) 100%);
    border: 1px solid rgba(42, 218, 178, .45);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: .75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--mp-teal);
    margin-bottom: 20px;
}

.mp-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--mp-teal);
    border-radius: 50%;
    display: inline-block;
    animation: mp-pulse 1.8s ease-in-out infinite;
}

.mp-ventajas-header h2 {
    font-size: clamp(1.5em, 3vw, 2.1em);
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
    letter-spacing: -.5px;
}

.mp-ventajas-header h2 span {
    background: linear-gradient(90deg, var(--mp-blue), var(--mp-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mp-ventajas-header p {
    color: rgba(255, 255, 255, .55);
    font-size: .95em;
    line-height: 1.6;
    margin: 0;
    max-width: 560px;
    margin-inline: auto;
}

/* Banner primero en España */
.mp-primero-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--mp-white-05);
    border: 1px solid rgba(42, 218, 178, .25);
    border-radius: 18px;
    padding: 22px 28px;
    margin-bottom: 36px;
}

.mp-primero-emoji {
    font-size: 2.2em;
    flex-shrink: 0;
}

.mp-primero-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.mp-primero-text strong {
    color: #fff;
    font-size: .9em;
    font-weight: 700;
    line-height: 1.3;
}

.mp-primero-text span {
    font-size: .85em;
    color: rgba(255, 255, 255, .6);
    line-height: 1.5;
}

.mp-primero-tag {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--mp-teal) 0%, var(--mp-blue) 100%);
    border-radius: var(--mp-radius-md);
    padding: 8px 16px;
    font-size: .72em;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
    line-height: 1.4;
    box-shadow: 0 4px 16px rgba(42, 218, 178, .35);
}

/* Grid de ventajas */
.mp-ventajas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 900px) {
    .mp-ventajas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .mp-ventajas-grid {
        grid-template-columns: 1fr;
    }

    .mp-primero-banner {
        flex-direction: column;
        text-align: center;
    }

    .mp-primero-tag {
        align-self: center;
    }
}

.mp-ventaja-card {
    background: rgba(255, 255, 255, .055);
    border: 1px solid var(--mp-white-10);
    border-radius: 18px;
    padding: 28px 24px;
    transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
    position: relative;
    overflow: hidden;
}

.mp-ventaja-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, var(--card-color, rgba(6, 132, 200, .15)) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity .3s;
    opacity: 0;
}

.mp-ventaja-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .085);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
}

.mp-ventaja-card:hover::before {
    opacity: 1;
}

.mp-ventaja-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6em;
    margin-bottom: 16px;
    background: var(--mp-white-07);
    border: 1px solid var(--mp-white-10);
    transition: transform .28s ease;
}

.mp-ventaja-card:hover .mp-ventaja-icon-wrap {
    transform: scale(1.1) rotate(-4deg);
}

.mp-ventaja-card h3 {
    font-size: .97em;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.3;
}

.mp-ventaja-card p {
    font-size: .84em;
    color: rgba(255, 255, 255, .52);
    line-height: 1.6;
    margin: 0;
}

.mp-ventaja-pill {
    display: inline-block;
    margin-top: 14px;
    padding: 3px 11px;
    border-radius: 100px;
    font-size: .7em;
    font-weight: 700;
    letter-spacing: .5px;
    background: rgba(6, 132, 200, .18);
    border: 1px solid rgba(6, 132, 200, .4);
    color: var(--mp-blue);
}

.mp-ventaja-pill.green {
    background: rgba(42, 218, 178, .14);
    border-color: rgba(42, 218, 178, .35);
    color: var(--mp-teal);
}

/* ── Trust Bar ── */
.mp-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 22px 24px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
}

.mp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82em;
    color: rgba(255, 255, 255, .5);
    white-space: nowrap;
}

.mp-trust-item strong {
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
}

.mp-trust-sep {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, .12);
}

@media (max-width: 600px) {
    .mp-trust-sep {
        display: none;
    }

    .mp-trust-item {
        font-size: .78em;
    }
}

/* ── Sin Recomendación ── */
.mp-sin-rec-box {
    background: linear-gradient(135deg, rgba(6, 132, 200, .12) 0%, rgba(42, 218, 178, .08) 100%);
    border: 1px solid rgba(6, 132, 200, .35);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    margin-bottom: 22px;
    position: relative;
    overflow: hidden;
}

.mp-sin-rec-box::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(6, 132, 200, .2) 0%, transparent 70%);
    pointer-events: none;
}

.mp-sin-rec-icon {
    font-size: 2.8em;
    margin-bottom: 12px;
    animation: mp-pulse 3s ease-in-out infinite;
}

.mp-sin-rec-title {
    font-size: 1.2em;
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
}

.mp-sin-rec-texto {
    font-size: .9em;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
    margin: 0 0 10px;
}

.mp-sin-rec-texto strong {
    color: var(--mp-teal);
}

.mp-sin-rec-sub {
    font-size: .8em;
    color: rgba(255, 255, 255, .4);
    margin: 0;
    font-style: italic;
}

.mp-sin-rec-acciones {
    text-align: center;
    padding-top: 6px;
}

.mp-sin-rec-acciones-label {
    font-size: .82em;
    color: rgba(255, 255, 255, .4);
    margin: 0 0 12px;
}

.mp-btn-secondary {
    padding: 13px 28px;
    background: var(--mp-white-10);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--mp-radius-md);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: .9em;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .2s, box-shadow .2s;
    display: inline-block;
}

.mp-btn-secondary:hover {
    background: rgba(6, 132, 200, .25);
    border-color: rgba(6, 132, 200, .5);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(6, 132, 200, .25);
}