/* ============================================================
   TUDO COMPRA EXPRESS v0.2.0
   Mini carrito compacto + compra guiada + cart nativo premium
   ============================================================ */

:root {
    --tcg-blue: #007AFD;
    --tcg-blue-2: #005FCC;
    --tcg-dark: #071225;
    --tcg-muted: #64748b;
    --tcg-text: #334155;
    --tcg-line: #dfe8f3;
    --tcg-soft: #f8fafc;
    --tcg-white: #ffffff;
}

.tcg-cart-float,
.tcg-cart-popover,
.tcg-plan-wizard,
.tcg-toast,
.tcg-plan-wizard * {
    box-sizing: border-box;
}

.tcg-cart-float {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 99960;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--tcg-blue), var(--tcg-blue-2));
    color: #fff;
    box-shadow: 0 14px 34px rgba(0,122,253,.24);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

body.tcg-cart-right .tcg-cart-float {
    left: auto;
    right: 22px;
}

.tcg-cart-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(0,122,253,.30);
}

.tcg-cart-float__icon {
    font-size: 19px;
    line-height: 1;
}

.tcg-cart-float__count {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--tcg-dark);
    color: #fff;
    font: 750 11px/22px "Epilogue", Arial, sans-serif;
    text-align: center;
}

.tcg-cart-popover {
    position: fixed;
    left: 22px;
    bottom: 82px;
    z-index: 99961;
    width: min(360px, calc(100vw - 28px));
    max-height: min(480px, 68vh);
    border: 1px solid rgba(223,232,243,.92);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(7,18,37,.22);
    overflow: hidden;
    transform: translateY(12px) scale(.98);
    opacity: 0;
    visibility: hidden;
    transition: all .22s ease;
    font-family: "Work Sans", Inter, Arial, sans-serif;
}

body.tcg-cart-right .tcg-cart-popover {
    left: auto;
    right: 22px;
}

.tcg-cart-popover.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.tcg-cart-popover__head {
    padding: 18px 18px 14px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid var(--tcg-line);
}

.tcg-kicker {
    display: inline-flex;
    margin: 0 0 7px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,122,253,.09);
    color: var(--tcg-blue);
    font: 760 10px/1 "Epilogue", Arial, sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tcg-cart-popover__head strong {
    display: block;
    color: var(--tcg-dark);
    font: 680 22px/1.05 "Epilogue", Poppins, Arial, sans-serif;
    letter-spacing: -.5px;
}

.tcg-cart-popover__close,
.tcg-plan-wizard__close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: #f1f5f9;
    color: var(--tcg-dark);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.tcg-cart-popover__body {
    max-height: 392px;
    overflow: auto;
    padding: 14px;
}

.tcg-empty {
    display: block;
    padding: 22px 16px;
    text-align: center;
    background: #f8fafc;
    border: 1px dashed var(--tcg-line);
    border-radius: 18px;
}

.tcg-empty strong {
    display: block;
    color: var(--tcg-dark);
    font: 680 16px/1.2 "Epilogue", Arial, sans-serif;
    margin-bottom: 6px;
}

.tcg-empty span {
    color: var(--tcg-muted);
    font-size: 13px;
    line-height: 1.45;
}

.tcg-mini-list {
    display: grid;
    gap: 10px;
    max-height: 245px;
    overflow: auto;
    padding-right: 2px;
}

.tcg-mini-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 13px;
    border: 1px solid var(--tcg-line);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(7,18,37,.045);
}

.tcg-mini-item__main strong {
    display: block;
    color: var(--tcg-dark);
    font: 650 13.8px/1.25 "Epilogue", Poppins, Arial, sans-serif;
    margin-bottom: 5px;
}

.tcg-mini-item__main span {
    display: block;
    color: var(--tcg-blue);
    font: 760 13px/1 "Epilogue", Arial, sans-serif;
}

.tcg-mini-item__tools {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.tcg-mini-item__tools em {
    min-width: 18px;
    text-align: center;
    color: var(--tcg-dark);
    font: 650 12px/1 "Epilogue", Arial, sans-serif;
    font-style: normal;
}

.tcg-qty,
.tcg-remove {
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf5ff;
    color: var(--tcg-blue);
    font: 760 14px/1 Arial, sans-serif;
    cursor: pointer;
}

.tcg-remove {
    background: #f8fafc;
    color: #64748b;
    font-size: 17px;
}

.tcg-remove:hover {
    background: #fee2e2;
    color: #dc2626;
}

.tcg-mini-total {
    margin-top: 12px;
    padding: 13px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid var(--tcg-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tcg-mini-total span {
    color: var(--tcg-muted);
    font-size: 13px;
}

.tcg-mini-total strong {
    color: var(--tcg-dark);
    font: 680 15px/1 "Epilogue", Arial, sans-serif;
}

.tcg-mini-actions {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.tcg-btn,
.tcg-open-plan-button {
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Epilogue", Poppins, Arial, sans-serif;
    font-size: 13.5px;
    font-weight: 760;
    line-height: 1;
    cursor: pointer;
    text-decoration: none !important;
    transition: all .2s ease;
}

.tcg-btn--primary,
.tcg-open-plan-button {
    background: var(--tcg-blue);
    color: #fff !important;
    box-shadow: 0 11px 25px rgba(0,122,253,.22);
}

.tcg-btn--primary:hover,
.tcg-open-plan-button:hover {
    background: var(--tcg-dark);
    color: #fff !important;
}

.tcg-btn--ghost {
    background: #fff;
    color: var(--tcg-dark) !important;
    border: 1px solid var(--tcg-line);
}

.tcg-btn--ghost:hover {
    color: var(--tcg-blue) !important;
    background: #f8fafc;
}

.tcg-toast {
    position: fixed;
    left: 50%;
    top: 22px;
    z-index: 99995;
    transform: translate(-50%, -14px);
    opacity: 0;
    visibility: hidden;
    padding: 12px 16px;
    min-width: 240px;
    max-width: calc(100vw - 28px);
    border-radius: 999px;
    background: var(--tcg-dark);
    color: #fff;
    box-shadow: 0 18px 45px rgba(7,18,37,.24);
    text-align: center;
    font: 650 13px/1.25 "Epilogue", Arial, sans-serif;
    transition: all .22s ease;
}

.tcg-toast.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
}

/* Compra guiada */
.tcg-plan-wizard {
    position: fixed;
    inset: 0;
    z-index: 99980;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.tcg-plan-wizard.is-open {
    display: flex;
}

.tcg-plan-wizard__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7,18,37,.48);
}

.tcg-plan-wizard__card {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    max-height: min(790px, calc(100vh - 36px));
    overflow: auto;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 34px 100px rgba(7,18,37,.34);
    padding: 30px;
    font-family: "Work Sans", Inter, Arial, sans-serif;
}

.tcg-plan-wizard__close {
    position: absolute;
    top: 18px;
    right: 18px;
}

.tcg-plan-wizard__head {
    max-width: 680px;
    margin-bottom: 22px;
}

.tcg-plan-wizard__head h3 {
    margin: 0;
    color: var(--tcg-dark);
    font: 690 clamp(28px, 4vw, 46px)/1.02 "Epilogue", Poppins, Arial, sans-serif;
    letter-spacing: -1.2px;
}

.tcg-plan-wizard__head p,
.tcg-step p {
    color: var(--tcg-muted);
    font-size: 15px;
    line-height: 1.55;
}

.tcg-plan-progress {
    display: flex;
    gap: 8px;
    margin: 0 0 24px;
}

.tcg-plan-progress span {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    color: #64748b;
    font: 760 12px/1 "Epilogue", Arial, sans-serif;
}

.tcg-plan-progress span.is-active {
    background: var(--tcg-blue);
    color: #fff;
}

.tcg-step { display: none; }
.tcg-step.is-active { display: block; }

.tcg-step h4 {
    margin: 0 0 8px;
    color: var(--tcg-dark);
    font: 680 23px/1.12 "Epilogue", Poppins, Arial, sans-serif;
    letter-spacing: -.5px;
}

.tcg-options {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.tcg-option {
    width: 100%;
    text-align: left;
    padding: 16px 17px;
    border-radius: 20px;
    border: 1px solid var(--tcg-line);
    background: #fff;
    cursor: pointer;
    transition: all .2s ease;
}

.tcg-option:hover,
.tcg-option.is-selected {
    border-color: rgba(0,122,253,.42);
    background: rgba(0,122,253,.045);
    box-shadow: 0 12px 30px rgba(0,122,253,.08);
}

.tcg-option strong {
    display: block;
    color: var(--tcg-dark);
    font: 680 16px/1.2 "Epilogue", Arial, sans-serif;
    margin-bottom: 7px;
}

.tcg-option span {
    display: block;
    color: var(--tcg-blue);
    font: 750 14px/1.25 "Epilogue", Arial, sans-serif;
}

.tcg-customer-type {
    margin: 16px 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tcg-customer-type label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border-radius: 999px;
    border: 1px solid var(--tcg-line);
    background: #fff;
    color: var(--tcg-dark);
    font: 650 13px/1 "Epilogue", Arial, sans-serif;
}

.tcg-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.tcg-field span {
    display: block;
    color: var(--tcg-dark);
    font: 650 12px/1 "Epilogue", Arial, sans-serif;
    margin: 0 0 7px;
}

.tcg-field input {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid var(--tcg-line);
    background: #f8fafc;
    color: var(--tcg-dark);
    font-size: 14px;
    outline: none;
}

.tcg-field input:focus {
    border-color: var(--tcg-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0,122,253,.10);
}

.tcg-note-soft {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(0,122,253,.07);
    color: var(--tcg-text);
    font-size: 13.5px;
    line-height: 1.5;
}

.tcg-summary {
    display: grid;
    gap: 10px;
}

.tcg-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--tcg-line);
    background: #fff;
}

.tcg-summary-row span { color: var(--tcg-dark); font-weight: 650; }
.tcg-summary-row strong { color: var(--tcg-blue); white-space: nowrap; }

.tcg-plan-wizard__foot {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--tcg-line);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Ocultar side cart externo común */
body.tcg-hide-side-cart .xoo-wsc-modal,
body.tcg-hide-side-cart .xoo-wsc-container,
body.tcg-hide-side-cart .xoo-wsc-basket,
body.tcg-hide-side-cart .xoo-wsc-slider,
body.tcg-hide-side-cart .woofc,
body.tcg-hide-side-cart .wc-side-cart,
body.tcg-hide-side-cart .side-cart-woocommerce {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Página cart nativa mejorada */
body.woocommerce-cart .site-content,
body.woocommerce-cart .page-content,
body.woocommerce-cart main {
    background: #f8fafc !important;
}

body.woocommerce-cart .woocommerce {
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 46px 18px 70px !important;
    font-family: "Work Sans", Inter, Arial, sans-serif !important;
}

body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-cart .cart-collaterals .cart_totals {
    border: 1px solid var(--tcg-line) !important;
    border-radius: 28px !important;
    background: #fff !important;
    box-shadow: 0 22px 60px rgba(15,23,42,.07) !important;
    overflow: hidden !important;
}

body.woocommerce-cart table.shop_table {
    border: 0 !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

body.woocommerce-cart table.shop_table th {
    color: var(--tcg-dark) !important;
    font-family: "Epilogue", Poppins, Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 760 !important;
    letter-spacing: .03em !important;
    text-transform: uppercase !important;
    background: #f8fafc !important;
}

body.woocommerce-cart table.shop_table td {
    border-color: var(--tcg-line) !important;
    color: var(--tcg-text) !important;
    font-size: 15px !important;
}

body.woocommerce-cart table.shop_table .product-name a {
    color: var(--tcg-dark) !important;
    font-family: "Epilogue", Poppins, Arial, sans-serif !important;
    font-weight: 650 !important;
    text-decoration: none !important;
}

body.woocommerce-cart .cart_totals h2 {
    color: var(--tcg-dark) !important;
    font-family: "Epilogue", Poppins, Arial, sans-serif !important;
    font-size: 28px !important;
    font-weight: 680 !important;
    letter-spacing: -.7px !important;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
body.woocommerce-cart .woocommerce button.button,
body.woocommerce-cart .woocommerce a.button {
    border-radius: 999px !important;
    background: var(--tcg-blue) !important;
    color: #fff !important;
    font-family: "Epilogue", Poppins, Arial, sans-serif !important;
    font-weight: 760 !important;
    text-decoration: none !important;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
body.woocommerce-cart .woocommerce button.button:hover,
body.woocommerce-cart .woocommerce a.button:hover {
    background: var(--tcg-dark) !important;
    color: #fff !important;
}

button#place_order,
button[name="woocommerce_checkout_place_order"] {
    font-family: "Epilogue", Poppins, Arial, sans-serif !important;
    font-weight: 760 !important;
}

@media (max-width: 720px) {
    .tcg-cart-float {
        left: 16px;
        bottom: 18px;
        width: 48px;
        height: 48px;
    }
    body.tcg-cart-right .tcg-cart-float {
        left: auto;
        right: 16px;
    }
    .tcg-cart-popover,
    body.tcg-cart-right .tcg-cart-popover {
        left: 12px;
        right: 12px;
        bottom: 76px;
        width: auto;
        max-height: 58vh;
        border-radius: 22px;
    }
    .tcg-cart-popover__body {
        max-height: calc(58vh - 84px);
    }
    .tcg-mini-actions {
        grid-template-columns: 1fr;
    }
    .tcg-plan-wizard {
        align-items: flex-end;
        padding: 10px;
    }
    .tcg-plan-wizard__card {
        border-radius: 26px;
        padding: 24px 18px 18px;
        max-height: 88vh;
    }
    .tcg-options,
    .tcg-form-grid {
        grid-template-columns: 1fr;
    }
    .tcg-plan-wizard__foot {
        display: grid;
        grid-template-columns: 1fr;
    }
    body.woocommerce-cart .woocommerce {
        padding: 28px 12px 50px !important;
    }
}

/* ============================================================
   TUDO COMPRA EXPRESS v0.2.2
   WhatsApp integrado + carrito sobre WhatsApp + efecto al agregar
   ============================================================ */

.tcg-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 99958;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    font-family: "Epilogue", "Nunito", Poppins, Arial, sans-serif;
}

.tcg-whatsapp-float__label {
    height: 34px;
    padding: 0 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #22c55e;
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: .02em;
    text-transform: uppercase;
    box-shadow: 0 13px 28px rgba(34,197,94,.25);
    transform: translateX(6px);
}

.tcg-whatsapp-float__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #22c55e;
    color: transparent;
    box-shadow: 0 16px 38px rgba(34,197,94,.30);
    border: 3px solid #ffffff;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease;
    overflow: hidden;
}

.tcg-whatsapp-float__icon::before {
    content: "";
    width: 31px;
    height: 31px;
    display: block;
    background: #ffffff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M16.02 3.2c-7.05 0-12.78 5.73-12.78 12.78 0 2.25.59 4.45 1.72 6.39L3.13 29l6.78-1.78a12.7 12.7 0 0 0 6.1 1.55h.01c7.04 0 12.77-5.73 12.77-12.78S23.06 3.2 16.02 3.2Zm0 23.42h-.01a10.6 10.6 0 0 1-5.42-1.49l-.39-.23-4.02 1.05 1.07-3.92-.25-.4a10.6 10.6 0 0 1-1.63-5.65c0-5.87 4.78-10.65 10.65-10.65s10.64 4.78 10.64 10.65-4.77 10.64-10.64 10.64Zm5.84-7.97c-.32-.16-1.9-.94-2.2-1.05-.29-.11-.51-.16-.72.16-.21.32-.83 1.05-1.02 1.26-.19.21-.37.24-.69.08-.32-.16-1.35-.5-2.57-1.58-.95-.85-1.59-1.89-1.78-2.21-.19-.32-.02-.49.14-.65.15-.14.32-.37.48-.56.16-.19.21-.32.32-.53.11-.21.05-.4-.03-.56-.08-.16-.72-1.74-.99-2.38-.26-.63-.53-.54-.72-.55h-.61c-.21 0-.56.08-.85.4-.29.32-1.12 1.1-1.12 2.67s1.15 3.1 1.31 3.31c.16.21 2.26 3.45 5.47 4.84.76.33 1.36.53 1.82.68.77.24 1.47.21 2.02.13.62-.09 1.9-.78 2.17-1.53.27-.75.27-1.39.19-1.53-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M16.02 3.2c-7.05 0-12.78 5.73-12.78 12.78 0 2.25.59 4.45 1.72 6.39L3.13 29l6.78-1.78a12.7 12.7 0 0 0 6.1 1.55h.01c7.04 0 12.77-5.73 12.77-12.78S23.06 3.2 16.02 3.2Zm0 23.42h-.01a10.6 10.6 0 0 1-5.42-1.49l-.39-.23-4.02 1.05 1.07-3.92-.25-.4a10.6 10.6 0 0 1-1.63-5.65c0-5.87 4.78-10.65 10.65-10.65s10.64 4.78 10.64 10.65-4.77 10.64-10.64 10.64Zm5.84-7.97c-.32-.16-1.9-.94-2.2-1.05-.29-.11-.51-.16-.72.16-.21.32-.83 1.05-1.02 1.26-.19.21-.37.24-.69.08-.32-.16-1.35-.5-2.57-1.58-.95-.85-1.59-1.89-1.78-2.21-.19-.32-.02-.49.14-.65.15-.14.32-.37.48-.56.16-.19.21-.32.32-.53.11-.21.05-.4-.03-.56-.08-.16-.72-1.74-.99-2.38-.26-.63-.53-.54-.72-.55h-.61c-.21 0-.56.08-.85.4-.29.32-1.12 1.1-1.12 2.67s1.15 3.1 1.31 3.31c.16.21 2.26 3.45 5.47 4.84.76.33 1.36.53 1.82.68.77.24 1.47.21 2.02.13.62-.09 1.9-.78 2.17-1.53.27-.75.27-1.39.19-1.53-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.tcg-whatsapp-float:hover .tcg-whatsapp-float__icon {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 19px 45px rgba(34,197,94,.36);
}

body.tcg-has-whatsapp .tcg-cart-float,
body.tcg-cart-right .tcg-cart-float {
    left: auto;
    right: 22px;
    bottom: 92px;
}

body.tcg-has-whatsapp .tcg-cart-popover,
body.tcg-cart-right .tcg-cart-popover {
    left: auto;
    right: 22px;
    bottom: 154px;
}

.tcg-cart-float.is-bumping {
    animation: tcgCartBump .58s cubic-bezier(.22, 1, .36, 1);
}

.tcg-cart-float.is-added::after {
    content: "✓";
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #22c55e;
    color: #ffffff;
    font: 800 20px/1 "Epilogue", Arial, sans-serif;
    animation: tcgAddedCheck .85s ease forwards;
}

@keyframes tcgCartBump {
    0% { transform: scale(1); }
    28% { transform: scale(1.16); }
    56% { transform: scale(.96); }
    100% { transform: scale(1); }
}

@keyframes tcgAddedCheck {
    0% { opacity: 0; transform: scale(.72); }
    16% { opacity: 1; transform: scale(1); }
    70% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(.72); }
}

body.tcg-hide-external-whatsapp .ht_ctc_chat_greetings_box,
body.tcg-hide-external-whatsapp .ht-ctc-chat,
body.tcg-hide-external-whatsapp #ht-ctc-chat,
body.tcg-hide-external-whatsapp .ctc-analytics,
body.tcg-hide-external-whatsapp .ht_ctc_style,
body.tcg-hide-external-whatsapp .joinchat,
body.tcg-hide-external-whatsapp .wa__btn_popup,
body.tcg-hide-external-whatsapp .whatsapp-chat,
body.tcg-hide-external-whatsapp .whatsapp-button {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

@media (max-width: 720px) {
    .tcg-whatsapp-float {
        right: 16px;
        bottom: 18px;
        gap: 8px;
    }

    .tcg-whatsapp-float__label {
        height: 30px;
        padding: 0 12px;
        font-size: 11.5px;
        transform: translateX(8px);
    }

    .tcg-whatsapp-float__icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .tcg-whatsapp-float__icon::before {
        width: 29px;
        height: 29px;
    }

    body.tcg-has-whatsapp .tcg-cart-float,
    body.tcg-cart-right .tcg-cart-float {
        left: auto;
        right: 16px;
        bottom: 84px;
        width: 48px;
        height: 48px;
    }

    body.tcg-has-whatsapp .tcg-cart-popover,
    body.tcg-cart-right .tcg-cart-popover {
        left: 12px;
        right: 12px;
        bottom: 142px;
        width: auto;
        max-height: 54vh;
    }
}


/* ============================================================
   TUDO COMPRA EXPRESS v0.2.2
   Iconos corporativos sin emoji + ajuste visual flotantes
   ============================================================ */

.tcg-cart-float__icon,
.tcg-whatsapp-float__icon {
    font-size: 0 !important;
    line-height: 0 !important;
    color: transparent !important;
    text-indent: -9999px !important;
    overflow: hidden !important;
}

.tcg-cart-float {
    width: 52px !important;
    height: 52px !important;
    background: linear-gradient(135deg, #007AFD 0%, #0067dd 100%) !important;
    border: 2px solid rgba(255,255,255,.82) !important;
    box-shadow: 0 16px 38px rgba(0,122,253,.28), 0 4px 12px rgba(7,18,37,.12) !important;
}

.tcg-cart-float__icon::before {
    content: "" !important;
    width: 25px !important;
    height: 25px !important;
    display: block !important;
    background: #ffffff !important;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7 7V6a5 5 0 0 1 10 0v1h1.08a2 2 0 0 1 1.99 1.82l.9 10A2 2 0 0 1 18.98 21H5.02a2 2 0 0 1-1.99-2.18l.9-10A2 2 0 0 1 5.92 7H7Zm2 0h6V6a3 3 0 0 0-6 0v1Zm-1 4a1 1 0 1 0 2 0 1 1 0 0 0-2 0Zm6 0a1 1 0 1 0 2 0 1 1 0 0 0-2 0Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M7 7V6a5 5 0 0 1 10 0v1h1.08a2 2 0 0 1 1.99 1.82l.9 10A2 2 0 0 1 18.98 21H5.02a2 2 0 0 1-1.99-2.18l.9-10A2 2 0 0 1 5.92 7H7Zm2 0h6V6a3 3 0 0 0-6 0v1Zm-1 4a1 1 0 1 0 2 0 1 1 0 0 0-2 0Zm6 0a1 1 0 1 0 2 0 1 1 0 0 0-2 0Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

.tcg-cart-float:hover {
    transform: translateY(-2px) scale(1.02) !important;
}

.tcg-cart-float__count {
    top: -8px !important;
    right: -7px !important;
    min-width: 23px !important;
    height: 23px !important;
    border: 2px solid #ffffff !important;
    background: #071225 !important;
    color: #ffffff !important;
    font: 760 11px/19px "Epilogue", Arial, sans-serif !important;
}

.tcg-whatsapp-float {
    gap: 9px !important;
}

.tcg-whatsapp-float__label {
    background: #22c55e !important;
    color: #ffffff !important;
    height: 32px !important;
    padding: 0 15px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    font-weight: 780 !important;
    letter-spacing: .045em !important;
    box-shadow: 0 13px 28px rgba(34,197,94,.24) !important;
}

.tcg-whatsapp-float__icon {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    border: 3px solid #ffffff !important;
    background: #22c55e !important;
    box-shadow: 0 17px 40px rgba(34,197,94,.32), 0 4px 12px rgba(7,18,37,.12) !important;
}

.tcg-whatsapp-float__icon::before {
    content: "" !important;
    width: 30px !important;
    height: 30px !important;
    display: block !important;
    background: #ffffff !important;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M16.02 3.2c-7.05 0-12.78 5.73-12.78 12.78 0 2.25.59 4.45 1.72 6.39L3.13 29l6.78-1.78a12.7 12.7 0 0 0 6.1 1.55h.01c7.04 0 12.77-5.73 12.77-12.78S23.06 3.2 16.02 3.2Zm0 23.42h-.01a10.6 10.6 0 0 1-5.42-1.49l-.39-.23-4.02 1.05 1.07-3.92-.25-.4a10.6 10.6 0 0 1-1.63-5.65c0-5.87 4.78-10.65 10.65-10.65s10.64 4.78 10.64 10.65-4.77 10.64-10.64 10.64Zm5.84-7.97c-.32-.16-1.9-.94-2.2-1.05-.29-.11-.51-.16-.72.16-.21.32-.83 1.05-1.02 1.26-.19.21-.37.24-.69.08-.32-.16-1.35-.5-2.57-1.58-.95-.85-1.59-1.89-1.78-2.21-.19-.32-.02-.49.14-.65.15-.14.32-.37.48-.56.16-.19.21-.32.32-.53.11-.21.05-.4-.03-.56-.08-.16-.72-1.74-.99-2.38-.26-.63-.53-.54-.72-.55h-.61c-.21 0-.56.08-.85.4-.29.32-1.12 1.1-1.12 2.67s1.15 3.1 1.31 3.31c.16.21 2.26 3.45 5.47 4.84.76.33 1.36.53 1.82.68.77.24 1.47.21 2.02.13.62-.09 1.9-.78 2.17-1.53.27-.75.27-1.39.19-1.53-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill='%23000' d='M16.02 3.2c-7.05 0-12.78 5.73-12.78 12.78 0 2.25.59 4.45 1.72 6.39L3.13 29l6.78-1.78a12.7 12.7 0 0 0 6.1 1.55h.01c7.04 0 12.77-5.73 12.77-12.78S23.06 3.2 16.02 3.2Zm0 23.42h-.01a10.6 10.6 0 0 1-5.42-1.49l-.39-.23-4.02 1.05 1.07-3.92-.25-.4a10.6 10.6 0 0 1-1.63-5.65c0-5.87 4.78-10.65 10.65-10.65s10.64 4.78 10.64 10.65-4.77 10.64-10.64 10.64Zm5.84-7.97c-.32-.16-1.9-.94-2.2-1.05-.29-.11-.51-.16-.72.16-.21.32-.83 1.05-1.02 1.26-.19.21-.37.24-.69.08-.32-.16-1.35-.5-2.57-1.58-.95-.85-1.59-1.89-1.78-2.21-.19-.32-.02-.49.14-.65.15-.14.32-.37.48-.56.16-.19.21-.32.32-.53.11-.21.05-.4-.03-.56-.08-.16-.72-1.74-.99-2.38-.26-.63-.53-.54-.72-.55h-.61c-.21 0-.56.08-.85.4-.29.32-1.12 1.1-1.12 2.67s1.15 3.1 1.31 3.31c.16.21 2.26 3.45 5.47 4.84.76.33 1.36.53 1.82.68.77.24 1.47.21 2.02.13.62-.09 1.9-.78 2.17-1.53.27-.75.27-1.39.19-1.53-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
}

body.tcg-has-whatsapp .tcg-cart-float,
body.tcg-cart-right .tcg-cart-float {
    right: 24px !important;
    bottom: 94px !important;
}

body.tcg-has-whatsapp .tcg-cart-popover,
body.tcg-cart-right .tcg-cart-popover {
    right: 24px !important;
    bottom: 156px !important;
}

.tcg-cart-float.is-added::after {
    z-index: 5 !important;
}

@media (max-width: 720px) {
    .tcg-cart-float {
        width: 50px !important;
        height: 50px !important;
    }

    .tcg-cart-float__icon::before {
        width: 24px !important;
        height: 24px !important;
    }

    .tcg-whatsapp-float__icon {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
    }

    .tcg-whatsapp-float__label {
        height: 30px !important;
        padding: 0 12px !important;
        font-size: 11px !important;
    }

    body.tcg-has-whatsapp .tcg-cart-float,
    body.tcg-cart-right .tcg-cart-float {
        right: 16px !important;
        bottom: 84px !important;
    }
}

/* ============================================================
   TUDO COMPRA EXPRESS v0.2.3
   Wizard más compacto + garantía separada + selección clara
   ============================================================ */

.tcg-plan-wizard {
    z-index: 1000005 !important;
    padding: 22px !important;
    align-items: center !important;
}

.tcg-plan-wizard__backdrop {
    background: rgba(7,18,37,.56) !important;
    backdrop-filter: blur(2px) !important;
    -webkit-backdrop-filter: blur(2px) !important;
}

.tcg-plan-wizard__card,
.tcg-plan-inline .tcg-plan-wizard__card {
    width: min(860px, calc(100vw - 44px)) !important;
    max-height: min(720px, calc(100vh - 54px)) !important;
    border-radius: 26px !important;
    padding: 26px !important;
    box-shadow: 0 30px 90px rgba(7,18,37,.30) !important;
}

.tcg-plan-inline {
    max-width: 980px !important;
    margin: 34px auto !important;
    padding: 0 18px !important;
    box-sizing: border-box !important;
}

.tcg-plan-inline .tcg-plan-wizard__card {
    width: 100% !important;
    max-height: none !important;
    overflow: visible !important;
    box-shadow: 0 22px 70px rgba(7,18,37,.08) !important;
    border: 1px solid rgba(223,232,243,.95) !important;
}

.tcg-plan-wizard__head {
    margin-bottom: 18px !important;
    max-width: 690px !important;
}

.tcg-plan-wizard__head h3 {
    font-size: clamp(30px, 3.2vw, 42px) !important;
    line-height: 1.02 !important;
    letter-spacing: -1.1px !important;
}

.tcg-plan-wizard__head p,
.tcg-step p {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
}

.tcg-plan-progress {
    margin: 0 0 20px !important;
    gap: 7px !important;
}

.tcg-plan-progress span {
    width: 29px !important;
    height: 29px !important;
    font-size: 11.5px !important;
}

.tcg-plan-progress span.is-done {
    background: rgba(0,122,253,.16) !important;
    color: #007AFD !important;
}

.tcg-step h4 {
    font-size: 21px !important;
    line-height: 1.14 !important;
    margin-bottom: 7px !important;
}

.tcg-options {
    margin-top: 14px !important;
    gap: 10px !important;
}

.tcg-options--single {
    grid-template-columns: 1fr !important;
}

.tcg-option {
    min-height: 92px !important;
    padding: 15px 16px !important;
    border-radius: 18px !important;
    display: grid !important;
    grid-template-columns: 28px 1fr auto !important;
    align-items: center !important;
    gap: 12px !important;
    position: relative !important;
    border-color: #dfe8f3 !important;
    box-shadow: none !important;
}

.tcg-option:hover {
    border-color: rgba(0,122,253,.38) !important;
    background: rgba(0,122,253,.035) !important;
    box-shadow: 0 12px 28px rgba(0,122,253,.07) !important;
}

.tcg-option.is-selected {
    border-color: #007AFD !important;
    background: linear-gradient(180deg, rgba(0,122,253,.10), rgba(0,122,253,.055)) !important;
    box-shadow: 0 16px 34px rgba(0,122,253,.12) !important;
}

.tcg-option__check {
    width: 26px !important;
    height: 26px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #eef6ff !important;
    color: transparent !important;
    border: 1px solid rgba(0,122,253,.18) !important;
    font: 800 13px/1 "Epilogue", Arial, sans-serif !important;
}

.tcg-option.is-selected .tcg-option__check {
    background: #007AFD !important;
    color: #ffffff !important;
    border-color: #007AFD !important;
}

.tcg-option__content {
    display: block !important;
    min-width: 0 !important;
}

.tcg-option strong {
    font-size: 15.5px !important;
    margin-bottom: 7px !important;
}

.tcg-option__price,
.tcg-option__price .amount,
.tcg-option__price bdi,
.tcg-option__price .woocommerce-Price-amount,
.tcg-option__price .woocommerce-Price-currencySymbol {
    display: inline-flex !important;
    align-items: baseline !important;
    gap: 3px !important;
    color: #007AFD !important;
    font-family: "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 760 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.tcg-option small {
    display: block !important;
    margin-top: 8px !important;
    color: #64748b !important;
    font-size: 12.5px !important;
    line-height: 1.45 !important;
    font-weight: 500 !important;
}

.tcg-option__action {
    min-width: 72px !important;
    min-height: 32px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #eef6ff !important;
    color: #007AFD !important;
    font: 720 12px/1 "Epilogue", Arial, sans-serif !important;
}

.tcg-option.is-selected .tcg-option__action {
    background: #007AFD !important;
    color: #ffffff !important;
}

.tcg-skip-option {
    width: fit-content !important;
    margin: 2px 0 0 40px !important;
    min-height: 36px !important;
    padding: 0 15px !important;
    border-radius: 999px !important;
    border: 1px solid #dfe8f3 !important;
    background: #ffffff !important;
    color: #64748b !important;
    cursor: pointer !important;
    font: 650 12.5px/1 "Epilogue", Arial, sans-serif !important;
}

.tcg-skip-option:hover {
    color: #007AFD !important;
    border-color: rgba(0,122,253,.26) !important;
    background: rgba(0,122,253,.04) !important;
}

.tcg-plan-wizard__foot {
    margin-top: 18px !important;
    padding-top: 16px !important;
}

.tcg-plan-wizard__foot .tcg-btn {
    min-height: 43px !important;
    padding: 12px 21px !important;
    font-size: 13.5px !important;
}

.tcg-summary-row {
    padding: 13px 15px !important;
    align-items: center !important;
}

.tcg-summary-row strong,
.tcg-summary-row strong .amount,
.tcg-summary-row strong bdi,
.tcg-summary-row strong .woocommerce-Price-currencySymbol {
    display: inline-flex !important;
    align-items: baseline !important;
    gap: 3px !important;
    white-space: nowrap !important;
}

.tcg-note-soft--summary {
    margin-top: 10px !important;
    background: rgba(0,122,253,.065) !important;
    border: 1px solid rgba(0,122,253,.13) !important;
}

@media (max-width: 782px) {
    .tcg-plan-wizard {
        align-items: flex-end !important;
        padding: 10px !important;
    }

    .tcg-plan-wizard__card,
    .tcg-plan-inline .tcg-plan-wizard__card {
        width: 100% !important;
        max-height: 86vh !important;
        border-radius: 24px !important;
        padding: 22px 16px 16px !important;
    }

    .tcg-plan-inline {
        padding: 0 12px !important;
        margin: 22px auto !important;
    }

    .tcg-options {
        grid-template-columns: 1fr !important;
    }

    .tcg-option {
        min-height: 84px !important;
        grid-template-columns: 26px 1fr !important;
        gap: 10px !important;
    }

    .tcg-option__action {
        grid-column: 2 !important;
        justify-self: flex-start !important;
        margin-top: 3px !important;
    }

    .tcg-skip-option {
        margin-left: 36px !important;
    }
}

/* ============================================================
   TUDO COMPRA EXPRESS v0.2.4
   Modalidad con costo mensual + garantía por modalidad + landing
   ============================================================ */

.tcg-plan-wizard__card,
.tcg-plan-inline .tcg-plan-wizard__card {
    width: min(820px, calc(100vw - 44px)) !important;
}

.tcg-plan-inline {
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.tcg-plan-landing {
    max-width: 960px !important;
    margin: 0 auto !important;
    padding: 38px 18px 70px !important;
}

body.tcg-wizard-landing-page {
    background: #f8fafc !important;
}

body.tcg-wizard-landing-page header.site-header,
body.tcg-wizard-landing-page #masthead,
body.tcg-wizard-landing-page .main-bar,
body.tcg-wizard-landing-page .site-footer,
body.tcg-wizard-landing-page footer.site-footer {
    display: none !important;
}

body.tcg-wizard-landing-page .tcg-plan-landing .tcg-plan-wizard__card {
    box-shadow: 0 24px 78px rgba(7,18,37,.09) !important;
    border: 1px solid rgba(223,232,243,.95) !important;
}

.tcg-option--modality {
    min-height: 118px !important;
    align-items: flex-start !important;
}

.tcg-modality-price {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 10px !important;
}

.tcg-modality-price > span {
    display: block !important;
    padding: 10px 11px !important;
    border-radius: 14px !important;
    background: #f8fafc !important;
    border: 1px solid rgba(223,232,243,.9) !important;
}

.tcg-option.is-selected .tcg-modality-price > span {
    background: rgba(255,255,255,.72) !important;
    border-color: rgba(0,122,253,.18) !important;
}

.tcg-modality-price em {
    display: block !important;
    margin-bottom: 5px !important;
    color: #64748b !important;
    font: 650 11.5px/1.1 "Epilogue", Arial, sans-serif !important;
    font-style: normal !important;
}

.tcg-modality-price strong,
.tcg-modality-price strong .amount,
.tcg-modality-price strong bdi,
.tcg-modality-price strong .woocommerce-Price-currencySymbol {
    display: inline-flex !important;
    align-items: baseline !important;
    gap: 3px !important;
    color: #007AFD !important;
    font-family: "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 780 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.tcg-option--guarantee {
    min-height: 112px !important;
}

.tcg-btn--soft {
    background: #ffffff !important;
    color: #64748b !important;
    border: 1px solid #dfe8f3 !important;
    box-shadow: none !important;
}

.tcg-btn--soft:hover {
    color: #007AFD !important;
    border-color: rgba(0,122,253,.28) !important;
    background: rgba(0,122,253,.045) !important;
}

.tcg-plan-wizard__foot {
    flex-wrap: wrap !important;
}

.tcg-plan-wizard__foot [data-tcg-skip-current] {
    margin-right: auto !important;
}

.tcg-step[data-tcg-step="2"] > p,
.tcg-step[data-tcg-step="3"] > p {
    max-width: 760px !important;
}

.tcg-option__action {
    pointer-events: none !important;
}

@media (max-width: 782px) {
    .tcg-plan-wizard__card,
    .tcg-plan-inline .tcg-plan-wizard__card {
        width: 100% !important;
    }

    .tcg-modality-price {
        grid-template-columns: 1fr !important;
        gap: 7px !important;
    }

    .tcg-option--modality {
        min-height: 132px !important;
    }

    .tcg-plan-wizard__foot [data-tcg-skip-current] {
        margin-right: 0 !important;
    }
}

/* ============================================================
   TUDO COMPRA EXPRESS v0.2.5
   Modalidades más claras: valor mensual protagonista + total secundario
   ============================================================ */

.tcg-step[data-tcg-step="1"] > p {
    max-width: 760px !important;
}

.tcg-option--modality {
    min-height: 104px !important;
    grid-template-columns: 28px 1fr !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 16px 18px !important;
}

.tcg-option--modality .tcg-option__content > strong {
    margin-bottom: 8px !important;
    font-size: 16px !important;
    line-height: 1.15 !important;
}

.tcg-modality-price {
    display: block !important;
    margin-top: 0 !important;
}

.tcg-modality-price__main {
    display: flex !important;
    align-items: baseline !important;
    gap: 9px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.tcg-modality-price__main em {
    display: inline-flex !important;
    margin: 0 !important;
    color: #64748b !important;
    font: 650 12px/1.2 "Epilogue", Arial, sans-serif !important;
    font-style: normal !important;
}

.tcg-modality-price__main strong,
.tcg-modality-price__main strong .amount,
.tcg-modality-price__main strong bdi,
.tcg-modality-price__main strong .woocommerce-Price-currencySymbol {
    display: inline-flex !important;
    align-items: baseline !important;
    gap: 3px !important;
    color: #007AFD !important;
    font-family: "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.tcg-modality-price__total {
    display: block !important;
    margin-top: 7px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #64748b !important;
    font: 650 12.5px/1.3 "Epilogue", Arial, sans-serif !important;
}

.tcg-modality-price__total strong,
.tcg-modality-price__total strong .amount,
.tcg-modality-price__total strong bdi,
.tcg-modality-price__total strong .woocommerce-Price-currencySymbol {
    display: inline-flex !important;
    align-items: baseline !important;
    gap: 2px !important;
    color: #071225 !important;
    font-size: 12.5px !important;
    font-weight: 760 !important;
    white-space: nowrap !important;
}

.tcg-option.is-selected .tcg-modality-price__main,
.tcg-option.is-selected .tcg-modality-price__total {
    background: transparent !important;
    border: 0 !important;
}

/* Garantía: texto suficiente, sin sobrecargar */
.tcg-step[data-tcg-step="2"] > p {
    max-width: 780px !important;
}

.tcg-option--guarantee .tcg-option__content small {
    max-width: 720px !important;
}

/* Botones de salto más cómodos y visibles */
.tcg-plan-wizard__foot [data-tcg-skip-current] {
    min-height: 43px !important;
    color: #64748b !important;
    background: #ffffff !important;
    border: 1px solid #dfe8f3 !important;
    margin-right: auto !important;
}

.tcg-plan-wizard__foot [data-tcg-skip-current]:hover {
    color: #007AFD !important;
    border-color: rgba(0,122,253,.30) !important;
    background: rgba(0,122,253,.045) !important;
}

/* Embebido/landing centrado y sin quedar cortado */
.tcg-plan-inline,
.tcg-plan-landing {
    width: 100% !important;
}

.tcg-plan-inline .tcg-plan-wizard__card,
.tcg-plan-landing .tcg-plan-wizard__card {
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (max-width: 782px) {
    .tcg-option--modality {
        min-height: 102px !important;
        grid-template-columns: 26px 1fr !important;
        padding: 15px !important;
    }

    .tcg-modality-price__main {
        display: block !important;
    }

    .tcg-modality-price__main em {
        display: block !important;
        margin-bottom: 5px !important;
    }

    .tcg-modality-price__main strong,
    .tcg-modality-price__main strong .amount,
    .tcg-modality-price__main strong bdi,
    .tcg-modality-price__main strong .woocommerce-Price-currencySymbol {
        font-size: 18px !important;
    }

    .tcg-plan-wizard__foot [data-tcg-skip-current] {
        order: 2 !important;
        width: 100% !important;
        margin-right: 0 !important;
    }
}


/* ============================================================
   v0.2.6 - MODALIDADES MÁS SIMPLES Y ELEGANTES
   Valor mensual protagonista + total secundario sin cajas internas
   ============================================================ */

.tcg-step[data-tcg-step="1"] > p {
    max-width: 780px !important;
    margin-bottom: 24px !important;
}

.tcg-option--modality {
    display: grid !important;
    grid-template-columns: 34px 1fr !important;
    align-items: center !important;
    gap: 14px !important;
    min-height: 132px !important;
    padding: 22px 24px !important;
    border-radius: 22px !important;
    background: #ffffff !important;
}

.tcg-option--modality .tcg-option__content > strong {
    display: block !important;
    margin: 0 0 10px !important;
    color: #071225 !important;
    font-size: 18px !important;
    line-height: 1.15 !important;
    font-weight: 760 !important;
    text-align: left !important;
}

.tcg-modality-price {
    display: block !important;
    margin: 0 !important;
}

.tcg-modality-price__main,
.tcg-modality-price__total,
.tcg-option.is-selected .tcg-modality-price__main,
.tcg-option.is-selected .tcg-modality-price__total {
    display: block !important;
    width: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.tcg-modality-price__main em {
    display: inline !important;
    margin: 0 8px 0 0 !important;
    color: #64748b !important;
    font-size: 13.5px !important;
    font-style: normal !important;
    font-weight: 690 !important;
    line-height: 1.3 !important;
}

.tcg-modality-price__main strong,
.tcg-modality-price__main strong .amount,
.tcg-modality-price__main strong bdi,
.tcg-modality-price__main strong .woocommerce-Price-currencySymbol {
    display: inline !important;
    color: #007AFD !important;
    font-size: 22px !important;
    line-height: 1.1 !important;
    font-weight: 820 !important;
    letter-spacing: -0.5px !important;
    white-space: nowrap !important;
}

.tcg-modality-price__total {
    margin-top: 8px !important;
    color: #64748b !important;
    font-size: 13.5px !important;
    line-height: 1.35 !important;
    font-weight: 650 !important;
}

.tcg-modality-price__total strong,
.tcg-modality-price__total strong .amount,
.tcg-modality-price__total strong bdi,
.tcg-modality-price__total strong .woocommerce-Price-currencySymbol {
    display: inline !important;
    color: #071225 !important;
    font-size: 13.5px !important;
    font-weight: 780 !important;
    white-space: nowrap !important;
}

.tcg-option--modality .tcg-option__check {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    border-radius: 999px !important;
    font-size: 0 !important;
}

.tcg-option--modality.is-selected {
    border-color: rgba(0,122,253,0.60) !important;
    background: rgba(0,122,253,0.035) !important;
    box-shadow: 0 14px 34px rgba(0,122,253,0.08) !important;
}

.tcg-option--modality.is-selected .tcg-option__check {
    background: #007AFD !important;
    border-color: #007AFD !important;
}

.tcg-option--modality.is-selected .tcg-option__check::after {
    content: "" !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    display: block !important;
}

.tcg-plan-inline,
.tcg-plan-landing,
[data-tcg-plan-wizard],
[data-tcg-plan-landing] {
    width: 100% !important;
}

@media (max-width: 820px) {
    .tcg-option--modality {
        grid-template-columns: 28px 1fr !important;
        min-height: auto !important;
        padding: 18px 18px !important;
    }

    .tcg-modality-price__main em {
        display: block !important;
        margin: 0 0 4px !important;
    }

    .tcg-modality-price__main strong,
    .tcg-modality-price__main strong .amount,
    .tcg-modality-price__main strong bdi,
    .tcg-modality-price__main strong .woocommerce-Price-currencySymbol {
        font-size: 19px !important;
    }
}


/* ============================================================
   v0.2.7 - MODAL GUIADO ÚNICO + MODALIDADES ESTILO STRIPE
   Valor mensual protagonista, total secundario, sin cajas internas
   ============================================================ */

.tcg-plan-inline,
.tcg-plan-landing,
[data-tcg-plan-wizard],
[data-tcg-plan-landing] {
    display: none !important;
}

.tcg-plan-wizard__card {
    max-width: 820px !important;
    border-radius: 28px !important;
    box-shadow: 0 34px 90px rgba(7,18,37,0.22) !important;
}

.tcg-plan-wizard__head h3,
#tcg-plan-title {
    font-size: clamp(34px, 4.3vw, 56px) !important;
    line-height: .98 !important;
    font-weight: 650 !important;
    letter-spacing: -2px !important;
}

.tcg-plan-wizard__head p,
.tcg-step > p {
    color: #64748b !important;
    font-size: 15.5px !important;
    line-height: 1.6 !important;
    font-weight: 430 !important;
    max-width: 700px !important;
}

.tcg-step h4 {
    font-size: clamp(22px, 2.4vw, 30px) !important;
    line-height: 1.12 !important;
    font-weight: 650 !important;
    letter-spacing: -0.8px !important;
    color: #071225 !important;
    margin-bottom: 10px !important;
}

.tcg-step[data-tcg-step="1"] > p {
    margin-bottom: 22px !important;
}

.tcg-options {
    gap: 14px !important;
}

.tcg-option--modality {
    display: grid !important;
    grid-template-columns: 26px 1fr !important;
    align-items: center !important;
    gap: 16px !important;
    min-height: 118px !important;
    padding: 22px 24px !important;
    border-radius: 22px !important;
    border: 1px solid #dbe7f5 !important;
    background: #ffffff !important;
    box-shadow: none !important;
}

.tcg-option--modality:hover {
    border-color: rgba(0,122,253,.38) !important;
    background: #fbfdff !important;
    box-shadow: 0 12px 30px rgba(7,18,37,.045) !important;
}

.tcg-option--modality.is-selected {
    border-color: #007AFD !important;
    background: rgba(0,122,253,.035) !important;
    box-shadow: 0 14px 34px rgba(0,122,253,.08) !important;
}

.tcg-option--modality .tcg-option__check {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    border-radius: 999px !important;
    border: 1.5px solid #bdd8fb !important;
    background: #eff6ff !important;
    font-size: 0 !important;
}

.tcg-option--modality.is-selected .tcg-option__check {
    background: #007AFD !important;
    border-color: #007AFD !important;
}

.tcg-option--modality.is-selected .tcg-option__check::after {
    content: "" !important;
    display: block !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
}

.tcg-option--modality .tcg-option__content > strong {
    display: block !important;
    margin: 0 0 8px !important;
    color: #071225 !important;
    font-size: 17px !important;
    font-weight: 630 !important;
    line-height: 1.18 !important;
    letter-spacing: -0.25px !important;
    text-align: left !important;
}

.tcg-modality-price,
.tcg-modality-price__main,
.tcg-modality-price__total,
.tcg-option.is-selected .tcg-modality-price__main,
.tcg-option.is-selected .tcg-modality-price__total {
    display: block !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.tcg-modality-price__main strong,
.tcg-modality-price__main strong .amount,
.tcg-modality-price__main strong bdi,
.tcg-modality-price__main strong .woocommerce-Price-currencySymbol {
    display: inline !important;
    color: #007AFD !important;
    font-family: "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
    font-size: clamp(24px, 2.5vw, 32px) !important;
    font-weight: 680 !important;
    line-height: 1.08 !important;
    letter-spacing: -0.9px !important;
    white-space: nowrap !important;
}

.tcg-modality-price__total {
    margin-top: 7px !important;
    color: #64748b !important;
    font-family: "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 430 !important;
    line-height: 1.35 !important;
}

.tcg-modality-price__total strong,
.tcg-modality-price__total strong .amount,
.tcg-modality-price__total strong bdi,
.tcg-modality-price__total strong .woocommerce-Price-currencySymbol {
    display: inline !important;
    color: #071225 !important;
    font-size: 13px !important;
    font-weight: 620 !important;
    white-space: nowrap !important;
}

.tcg-btn {
    font-weight: 650 !important;
    letter-spacing: -0.15px !important;
}

.tcg-plan-wizard__foot [data-tcg-skip-current] {
    font-weight: 600 !important;
    color: #64748b !important;
    background: #ffffff !important;
    border: 1px solid #dbe3ef !important;
}

@media (max-width: 820px) {
    .tcg-plan-wizard__card {
        border-radius: 24px !important;
    }
    .tcg-option--modality {
        grid-template-columns: 24px 1fr !important;
        padding: 18px !important;
        min-height: 106px !important;
    }
    .tcg-option--modality .tcg-option__content > strong {
        font-size: 16px !important;
    }
}


/* ============================================================
   v0.2.8 - MODALIDADES COMPACTAS SIN CAJAS INTERNAS
   Corrige fuentes grandes y fondos/cajas al seleccionar
   ============================================================ */

.tcg-plan-wizard__card {
    max-width: 780px !important;
    padding: 30px 32px 24px !important;
    border-radius: 26px !important;
}

.tcg-plan-wizard__head h3,
#tcg-plan-title {
    font-size: clamp(32px, 3.6vw, 46px) !important;
    line-height: 1.02 !important;
    font-weight: 620 !important;
    letter-spacing: -1.35px !important;
}

.tcg-plan-wizard__head p,
.tcg-step > p {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
    font-weight: 420 !important;
    letter-spacing: .02em !important;
}

.tcg-step h4 {
    font-size: clamp(21px, 2vw, 26px) !important;
    line-height: 1.14 !important;
    font-weight: 620 !important;
    letter-spacing: -0.65px !important;
}

.tcg-options {
    gap: 12px !important;
}

.tcg-option--modality {
    grid-template-columns: 24px 1fr !important;
    gap: 14px !important;
    min-height: 104px !important;
    padding: 18px 20px !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    box-shadow: none !important;
}

.tcg-option--modality:hover {
    background: #fbfdff !important;
    box-shadow: 0 10px 24px rgba(7,18,37,.035) !important;
}

.tcg-option--modality.is-selected {
    background: rgba(0,122,253,.028) !important;
    border-color: rgba(0,122,253,.68) !important;
    box-shadow: 0 12px 28px rgba(0,122,253,.07) !important;
}

.tcg-option--modality .tcg-option__content > strong {
    margin-bottom: 7px !important;
    font-size: 15.5px !important;
    font-weight: 610 !important;
    letter-spacing: -0.12px !important;
}

/* Anula cualquier caja interna heredada de versiones anteriores */
.tcg-option--modality .tcg-modality-price,
.tcg-option--modality .tcg-modality-price > span,
.tcg-option--modality .tcg-modality-price__main,
.tcg-option--modality .tcg-modality-price__total,
.tcg-option--modality.is-selected .tcg-modality-price,
.tcg-option--modality.is-selected .tcg-modality-price > span,
.tcg-option--modality.is-selected .tcg-modality-price__main,
.tcg-option--modality.is-selected .tcg-modality-price__total {
    display: block !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.tcg-option--modality .tcg-modality-price__main {
    margin-top: 0 !important;
}

.tcg-option--modality .tcg-modality-price__main em {
    display: none !important;
}

.tcg-option--modality .tcg-modality-price__main strong,
.tcg-option--modality .tcg-modality-price__main strong .amount,
.tcg-option--modality .tcg-modality-price__main strong bdi,
.tcg-option--modality .tcg-modality-price__main strong .woocommerce-Price-amount,
.tcg-option--modality .tcg-modality-price__main strong .woocommerce-Price-currencySymbol,
.tcg-option--modality .tcg-modality-price__main .amount,
.tcg-option--modality .tcg-modality-price__main bdi,
.tcg-option--modality .tcg-modality-price__main .woocommerce-Price-amount,
.tcg-option--modality .tcg-modality-price__main .woocommerce-Price-currencySymbol {
    display: inline !important;
    color: #007AFD !important;
    font-family: "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
    font-size: clamp(21px, 1.9vw, 25px) !important;
    font-weight: 660 !important;
    line-height: 1.08 !important;
    letter-spacing: -0.5px !important;
    white-space: nowrap !important;
}

.tcg-option--modality .tcg-modality-price__total {
    margin-top: 6px !important;
    color: #64748b !important;
    font-family: "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
    font-size: 12.5px !important;
    line-height: 1.35 !important;
    font-weight: 430 !important;
    letter-spacing: .01em !important;
}

.tcg-option--modality .tcg-modality-price__total strong,
.tcg-option--modality .tcg-modality-price__total strong .amount,
.tcg-option--modality .tcg-modality-price__total strong bdi,
.tcg-option--modality .tcg-modality-price__total strong .woocommerce-Price-amount,
.tcg-option--modality .tcg-modality-price__total strong .woocommerce-Price-currencySymbol,
.tcg-option--modality .tcg-modality-price__total .amount,
.tcg-option--modality .tcg-modality-price__total bdi,
.tcg-option--modality .tcg-modality-price__total .woocommerce-Price-amount,
.tcg-option--modality .tcg-modality-price__total .woocommerce-Price-currencySymbol {
    display: inline !important;
    color: #071225 !important;
    font-size: 12.5px !important;
    font-weight: 620 !important;
    line-height: 1.35 !important;
    white-space: nowrap !important;
}

.tcg-option--modality .tcg-option__check {
    width: 21px !important;
    height: 21px !important;
    min-width: 21px !important;
    border-width: 1.4px !important;
}

.tcg-option--modality.is-selected .tcg-option__check::after {
    width: 7px !important;
    height: 7px !important;
}

.tcg-plan-wizard__foot .tcg-btn {
    min-height: 42px !important;
    padding: 11px 20px !important;
    font-size: 13.25px !important;
    font-weight: 630 !important;
}

@media (max-width: 820px) {
    .tcg-plan-wizard__card {
        padding: 24px 18px 18px !important;
        border-radius: 22px !important;
    }

    .tcg-plan-wizard__head h3,
    #tcg-plan-title {
        font-size: 34px !important;
    }

    .tcg-option--modality {
        grid-template-columns: 22px 1fr !important;
        min-height: 92px !important;
        padding: 16px !important;
    }

    .tcg-option--modality .tcg-modality-price__main strong,
    .tcg-option--modality .tcg-modality-price__main strong .amount,
    .tcg-option--modality .tcg-modality-price__main strong bdi,
    .tcg-option--modality .tcg-modality-price__main strong .woocommerce-Price-amount,
    .tcg-option--modality .tcg-modality-price__main strong .woocommerce-Price-currencySymbol,
    .tcg-option--modality .tcg-modality-price__main .amount,
    .tcg-option--modality .tcg-modality-price__main bdi,
    .tcg-option--modality .tcg-modality-price__main .woocommerce-Price-amount,
    .tcg-option--modality .tcg-modality-price__main .woocommerce-Price-currencySymbol {
        font-size: 20px !important;
    }
}

/* ============================================================
   v0.2.9 - PULIDO MODAL GUIADO
   Fuentes más sutiles, paso 2 compacto, paso 3 datos iniciales
   ============================================================ */

.tcg-plan-wizard__card {
    width: min(820px, calc(100vw - 42px)) !important;
    max-height: min(700px, calc(100vh - 44px)) !important;
    padding: 26px 28px 22px !important;
    border-radius: 26px !important;
}

.tcg-plan-wizard__head {
    margin-bottom: 14px !important;
    max-width: 700px !important;
}

.tcg-plan-wizard__head h3,
#tcg-plan-title {
    font-size: clamp(34px, 3.4vw, 44px) !important;
    line-height: 1.01 !important;
    font-weight: 610 !important;
    letter-spacing: -1.35px !important;
    margin: 6px 0 8px !important;
}

.tcg-plan-wizard__head p,
.tcg-step > p,
.tcg-step-intro {
    font-size: 13.8px !important;
    line-height: 1.52 !important;
    font-weight: 420 !important;
    letter-spacing: .01em !important;
    color: #64748b !important;
    max-width: 720px !important;
}

.tcg-kicker {
    font-size: 10.5px !important;
    letter-spacing: .11em !important;
    padding: 6px 12px !important;
}

.tcg-plan-progress {
    margin: 0 0 18px !important;
    gap: 8px !important;
}

.tcg-plan-progress span {
    width: 30px !important;
    height: 30px !important;
    font-size: 12px !important;
    font-weight: 720 !important;
}

.tcg-step h4 {
    font-size: clamp(22px, 2.1vw, 28px) !important;
    line-height: 1.1 !important;
    font-weight: 620 !important;
    letter-spacing: -0.75px !important;
    margin: 0 0 8px !important;
}

.tcg-options {
    margin-top: 18px !important;
    gap: 12px !important;
}

/* Paso 1: modalidad limpia, sin cajas internas */
.tcg-step[data-tcg-step="1"] .tcg-options {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.tcg-option--modality {
    display: grid !important;
    grid-template-columns: 24px 1fr !important;
    align-items: center !important;
    gap: 13px !important;
    min-height: 108px !important;
    padding: 18px 20px !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    border: 1px solid #dbe7f5 !important;
    box-shadow: none !important;
}

.tcg-option--modality:hover {
    background: #fbfdff !important;
    border-color: rgba(0,122,253,.35) !important;
    box-shadow: 0 10px 26px rgba(7,18,37,.035) !important;
}

.tcg-option--modality.is-selected {
    background: rgba(0,122,253,.026) !important;
    border-color: #007AFD !important;
    box-shadow: 0 14px 30px rgba(0,122,253,.08) !important;
}

.tcg-option--modality .tcg-option__content > strong {
    font-size: 15.25px !important;
    font-weight: 610 !important;
    letter-spacing: -0.15px !important;
    margin: 0 0 8px !important;
    color: #071225 !important;
}

.tcg-option--modality .tcg-modality-price,
.tcg-option--modality .tcg-modality-price > span,
.tcg-option--modality .tcg-modality-price__main,
.tcg-option--modality .tcg-modality-price__total,
.tcg-option--modality.is-selected .tcg-modality-price,
.tcg-option--modality.is-selected .tcg-modality-price > span,
.tcg-option--modality.is-selected .tcg-modality-price__main,
.tcg-option--modality.is-selected .tcg-modality-price__total {
    display: block !important;
    width: auto !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.tcg-option--modality .tcg-modality-price__main strong,
.tcg-option--modality .tcg-modality-price__main strong .amount,
.tcg-option--modality .tcg-modality-price__main strong bdi,
.tcg-option--modality .tcg-modality-price__main strong .woocommerce-Price-amount,
.tcg-option--modality .tcg-modality-price__main strong .woocommerce-Price-currencySymbol,
.tcg-option--modality .tcg-modality-price__main .amount,
.tcg-option--modality .tcg-modality-price__main bdi,
.tcg-option--modality .tcg-modality-price__main .woocommerce-Price-amount,
.tcg-option--modality .tcg-modality-price__main .woocommerce-Price-currencySymbol {
    display: inline !important;
    color: #007AFD !important;
    font-family: "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
    font-size: clamp(20px, 1.75vw, 24px) !important;
    font-weight: 650 !important;
    line-height: 1.08 !important;
    letter-spacing: -0.45px !important;
    white-space: nowrap !important;
}

.tcg-option--modality .tcg-modality-price__total {
    margin-top: 5px !important;
    color: #64748b !important;
    font-size: 12.25px !important;
    line-height: 1.35 !important;
    font-weight: 430 !important;
}

.tcg-option--modality .tcg-modality-price__total strong,
.tcg-option--modality .tcg-modality-price__total strong .amount,
.tcg-option--modality .tcg-modality-price__total strong bdi,
.tcg-option--modality .tcg-modality-price__total .amount,
.tcg-option--modality .tcg-modality-price__total bdi {
    color: #071225 !important;
    font-size: 12.25px !important;
    font-weight: 620 !important;
    white-space: nowrap !important;
}

/* Pasos 2 y 3 más compactos */
.tcg-step-block {
    margin-top: 16px !important;
}

.tcg-step-block h5 {
    margin: 0 0 4px !important;
    color: #071225 !important;
    font: 620 16px/1.15 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
    letter-spacing: -0.25px !important;
}

.tcg-step-block > small {
    display: block !important;
    max-width: 760px !important;
    color: #64748b !important;
    font: 420 12.8px/1.45 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
    margin: 0 0 10px !important;
}

.tcg-step-divider {
    height: 1px !important;
    background: #dbe7f5 !important;
    margin: 16px 0 14px !important;
}

.tcg-step[data-tcg-step="2"] .tcg-options {
    margin-top: 9px !important;
    gap: 9px !important;
}

.tcg-step[data-tcg-step="2"] .tcg-options:not(.tcg-options--single) {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.tcg-step[data-tcg-step="2"] .tcg-option {
    min-height: 74px !important;
    padding: 12px 14px !important;
    border-radius: 16px !important;
    grid-template-columns: 24px 1fr auto !important;
    gap: 10px !important;
}

.tcg-step[data-tcg-step="2"] .tcg-option strong {
    font-size: 13.8px !important;
    font-weight: 610 !important;
    margin: 0 0 4px !important;
}

.tcg-step[data-tcg-step="2"] .tcg-option small {
    font-size: 11.8px !important;
    line-height: 1.35 !important;
    margin-top: 5px !important;
}

.tcg-step[data-tcg-step="2"] .tcg-option__price,
.tcg-step[data-tcg-step="2"] .tcg-option__price .amount,
.tcg-step[data-tcg-step="2"] .tcg-option__price bdi,
.tcg-step[data-tcg-step="2"] .tcg-option__price .woocommerce-Price-amount,
.tcg-step[data-tcg-step="2"] .tcg-option__price .woocommerce-Price-currencySymbol {
    font-size: 13px !important;
    font-weight: 680 !important;
}

.tcg-step[data-tcg-step="2"] .tcg-option__action {
    min-width: 64px !important;
    min-height: 29px !important;
    font-size: 11.5px !important;
}

/* Paso 3: datos empresa/persona */
.tcg-customer {
    margin-top: 18px !important;
}

.tcg-customer-type {
    display: inline-flex !important;
    padding: 4px !important;
    border: 1px solid #dbe7f5 !important;
    border-radius: 999px !important;
    background: #f8fbff !important;
    gap: 4px !important;
    margin-bottom: 16px !important;
}

.tcg-customer-type button {
    border: 0 !important;
    border-radius: 999px !important;
    min-height: 34px !important;
    padding: 0 16px !important;
    background: transparent !important;
    color: #64748b !important;
    cursor: pointer !important;
    font: 620 12.5px/1 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
}

.tcg-customer-type button.is-selected {
    background: #007AFD !important;
    color: #ffffff !important;
    box-shadow: 0 8px 18px rgba(0,122,253,.16) !important;
}

.tcg-form-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    margin-bottom: 12px !important;
}

.tcg-form-grid[hidden] {
    display: none !important;
}

.tcg-form-grid--contact {
    margin-bottom: 0 !important;
}

.tcg-field {
    display: block !important;
}

.tcg-field span {
    display: block !important;
    margin: 0 0 6px !important;
    color: #64748b !important;
    font: 600 12px/1.2 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
}

.tcg-field input {
    width: 100% !important;
    height: 43px !important;
    border-radius: 14px !important;
    border: 1px solid #dbe7f5 !important;
    background: #ffffff !important;
    color: #071225 !important;
    padding: 0 14px !important;
    font: 520 13.5px/1 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
    box-shadow: none !important;
    outline: none !important;
}

.tcg-field input:focus {
    border-color: rgba(0,122,253,.7) !important;
    box-shadow: 0 0 0 3px rgba(0,122,253,.09) !important;
}

.tcg-field input.is-error {
    border-color: #fb7185 !important;
    box-shadow: 0 0 0 3px rgba(251,113,133,.12) !important;
}

.tcg-summary-customer {
    margin-top: 10px !important;
    padding: 12px 14px !important;
    border: 1px solid #dbe7f5 !important;
    border-radius: 16px !important;
    background: #fbfdff !important;
}

.tcg-summary-customer span,
.tcg-summary-customer small {
    display: block !important;
    color: #64748b !important;
    font: 500 12px/1.35 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
}

.tcg-summary-customer strong {
    display: block !important;
    margin: 4px 0 2px !important;
    color: #071225 !important;
    font: 650 13.5px/1.25 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
}

.tcg-plan-wizard__foot {
    margin-top: 16px !important;
    padding-top: 14px !important;
}

.tcg-plan-wizard__foot .tcg-btn {
    min-height: 40px !important;
    padding: 10px 18px !important;
    font-size: 12.8px !important;
    font-weight: 620 !important;
}

@media (max-width: 820px) {
    .tcg-plan-wizard__card {
        width: calc(100vw - 20px) !important;
        padding: 22px 18px 18px !important;
        max-height: calc(100vh - 24px) !important;
    }

    .tcg-plan-wizard__head h3,
    #tcg-plan-title {
        font-size: 32px !important;
    }

    .tcg-step h4 {
        font-size: 22px !important;
    }

    .tcg-step[data-tcg-step="1"] .tcg-options,
    .tcg-step[data-tcg-step="2"] .tcg-options:not(.tcg-options--single),
    .tcg-form-grid {
        grid-template-columns: 1fr !important;
    }

    .tcg-option--modality {
        min-height: 92px !important;
        padding: 15px 16px !important;
    }

    .tcg-option--modality .tcg-modality-price__main strong,
    .tcg-option--modality .tcg-modality-price__main strong .amount,
    .tcg-option--modality .tcg-modality-price__main strong bdi,
    .tcg-option--modality .tcg-modality-price__main .amount,
    .tcg-option--modality .tcg-modality-price__main bdi {
        font-size: 20px !important;
    }
}

/* ============================================================
   v0.3.0 - FLUJO FINAL MODAL: GARANTÍA CONFIGURABLE + DATOS/RESUMEN
   Estilo más sutil, solo botón/modal
   ============================================================ */

.tcg-plan-wizard__card {
    max-width: 760px !important;
    padding: 28px 30px 22px !important;
    border-radius: 26px !important;
}

.tcg-kicker {
    font-size: 10.5px !important;
    letter-spacing: .11em !important;
    padding: 7px 12px !important;
}

.tcg-plan-wizard__head h3,
#tcg-plan-title {
    font-size: clamp(30px, 3vw, 42px) !important;
    line-height: 1.02 !important;
    font-weight: 620 !important;
    letter-spacing: -1.25px !important;
    margin: 10px 0 8px !important;
}

.tcg-plan-wizard__head p,
.tcg-step > p,
.tcg-step-intro {
    font-size: 13.5px !important;
    line-height: 1.52 !important;
    font-weight: 420 !important;
    color: #64748b !important;
    letter-spacing: .01em !important;
}

/* Desde el paso 2 se oculta el título grande para no saturar */
.tcg-plan-wizard.tcg-head-compact .tcg-plan-wizard__head {
    display: none !important;
}

.tcg-plan-progress {
    margin: 16px 0 22px !important;
    gap: 9px !important;
}

.tcg-plan-progress span {
    width: 30px !important;
    height: 30px !important;
    font-size: 12px !important;
    font-weight: 680 !important;
}

.tcg-step h4 {
    font-size: clamp(20px, 1.9vw, 25px) !important;
    line-height: 1.15 !important;
    font-weight: 620 !important;
    letter-spacing: -0.55px !important;
    margin: 0 0 8px !important;
}

.tcg-step.is-active {
    display: block !important;
}

.tcg-step:not(.is-active) {
    display: none !important;
}

/* Modalidades: lista izquierda + plan contratado a la derecha */
@media (min-width: 1024px) {
    .tcg-plan-wizard:not([data-tcg-plan="parasiempre"]) .tcg-step[data-tcg-stage="modality"] .tcg-options {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 300px !important;
        gap: 14px 28px !important;
        margin-top: 20px !important;
        align-items: start !important;
    }

    .tcg-plan-wizard:not([data-tcg-plan="parasiempre"]) .tcg-step[data-tcg-stage="modality"] .tcg-option--modality {
        grid-column: 1 !important;
        width: 100% !important;
    }

    .tcg-plan-wizard:not([data-tcg-plan="parasiempre"]) .tcg-step[data-tcg-stage="modality"] .tcg-modality-plan-heading {
    grid-column: 2 !important;
    grid-row: 1 / span 4 !important;
    align-self: start !important;
    margin: 12px 0 0 !important;
    padding: 4px 0 4px 20px !important;
    border: 0 !important;
    border-left: 3px solid #007AFD !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-align: left !important;
}

    .tcg-plan-wizard:not([data-tcg-plan="parasiempre"]) .tcg-modality-plan-heading span {
        font-size: 11.5px !important;
        letter-spacing: 0.12em !important;
    }

    .tcg-plan-wizard:not([data-tcg-plan="parasiempre"]) .tcg-modality-plan-heading strong {
    font-size: 23px !important;
    font-weight: 520 !important;
    line-height: 1.12 !important;
}
}

.tcg-option--modality {
    min-height: 104px !important;
    padding: 17px 18px !important;
    border-radius: 19px !important;
    grid-template-columns: 24px 1fr !important;
    gap: 14px !important;
    align-items: center !important;
}

.tcg-option--modality .tcg-option__content > strong {
    font-size: 15px !important;
    font-weight: 610 !important;
    margin: 0 0 7px !important;
}

.tcg-option--modality .tcg-modality-price__main strong,
.tcg-option--modality .tcg-modality-price__main strong .amount,
.tcg-option--modality .tcg-modality-price__main strong bdi,
.tcg-option--modality .tcg-modality-price__main .amount,
.tcg-option--modality .tcg-modality-price__main bdi {
    font-size: clamp(20px, 1.75vw, 24px) !important;
    font-weight: 650 !important;
    letter-spacing: -0.45px !important;
}

.tcg-option--modality .tcg-modality-price__total,
.tcg-option--modality .tcg-modality-price__total strong,
.tcg-option--modality .tcg-modality-price__total .amount,
.tcg-option--modality .tcg-modality-price__total bdi {
    font-size: 12px !important;
    line-height: 1.3 !important;
}

/* Garantía */
.tcg-guarantee-box {
    margin-top: 18px !important;
}

.tcg-guarantee-box__inner {
    border: 1px solid #dbe7f5 !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    padding: 18px !important;
    box-shadow: 0 12px 30px rgba(7,18,37,.04) !important;
}

.tcg-guarantee-copy strong {
    display: block !important;
    color: #071225 !important;
    font: 620 16px/1.2 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
    margin-bottom: 6px !important;
}

.tcg-guarantee-status {
    display: inline-flex !important;
    align-items: center !important;
    width: max-content !important;
    max-width: 100% !important;
    margin: 0 0 10px !important;
    padding: 6px 10px !important;
    border-radius: 999px !important;
    background: #eff6ff !important;
    color: #007AFD !important;
    font: 650 11.5px/1 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
}

.tcg-guarantee-copy p {
    margin: 0 !important;
    color: #64748b !important;
    font: 420 13px/1.52 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
}

.tcg-guarantee-value {
    margin-top: 14px !important;
    padding-top: 14px !important;
    border-top: 1px solid #e2e8f0 !important;
    display: flex !important;
    align-items: baseline !important;
    justify-content: space-between !important;
    gap: 12px !important;
}

.tcg-guarantee-value span {
    color: #64748b !important;
    font: 520 12.5px/1.2 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
}

.tcg-guarantee-value strong,
.tcg-guarantee-value strong .amount,
.tcg-guarantee-value strong bdi {
    color: #007AFD !important;
    font: 680 19px/1 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
}

.tcg-choice-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: 16px !important;
}

.tcg-choice-actions .tcg-btn {
    min-height: 40px !important;
    padding: 10px 16px !important;
    font-size: 12.8px !important;
}

/* Extras */
.tcg-step[data-tcg-stage="addons"] .tcg-options {
    margin-top: 16px !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 11px !important;
}

.tcg-option--addon {
    min-height: 76px !important;
    padding: 14px 15px !important;
    border-radius: 17px !important;
    grid-template-columns: 23px 1fr auto !important;
    gap: 12px !important;
}

.tcg-option--addon .tcg-option__content > strong {
    font-size: 13.5px !important;
    font-weight: 610 !important;
}

.tcg-option--addon .tcg-option__price,
.tcg-option--addon small {
    font-size: 12px !important;
}

.tcg-option__action {
    font-size: 11.5px !important;
    padding: 8px 10px !important;
    border-radius: 999px !important;
}

/* Datos + resumen */
.tcg-final-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin-top: 16px !important;
}

.tcg-customer {
    border: 1px solid #dbe7f5 !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    padding: 16px !important;
}

.tcg-customer-type {
    margin-bottom: 14px !important;
}

.tcg-customer-type button {
    min-height: 38px !important;
    padding: 9px 14px !important;
    font-size: 12.8px !important;
}

.tcg-summary-box {
    border: 1px solid #dbe7f5 !important;
    border-radius: 18px !important;
    background: #fbfdff !important;
    padding: 14px !important;
}

.tcg-summary-title {
    display: block !important;
    color: #071225 !important;
    font: 650 14px/1.2 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
    margin-bottom: 8px !important;
}

.tcg-summary-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    padding: 10px 0 !important;
    border-top: 1px solid #e2e8f0 !important;
}

.tcg-summary-row span {
    color: #334155 !important;
    font: 520 12.8px/1.35 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
}

.tcg-summary-row strong,
.tcg-summary-row strong .amount,
.tcg-summary-row strong bdi {
    color: #071225 !important;
    font: 680 13px/1 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
    white-space: nowrap !important;
}

.tcg-note-soft--summary {
    margin-top: 12px !important;
    font-size: 12.5px !important;
    line-height: 1.45 !important;
}

.tcg-plan-wizard__foot {
    margin-top: 16px !important;
    padding-top: 14px !important;
}

.tcg-plan-wizard__foot [data-tcg-skip-current] {
    width: auto !important;
}

@media (max-width: 820px) {
    .tcg-plan-wizard__card {
        width: calc(100vw - 18px) !important;
        max-height: calc(100vh - 18px) !important;
        padding: 20px 16px 16px !important;
    }

    .tcg-plan-wizard__head h3,
    #tcg-plan-title {
        font-size: 30px !important;
    }

    .tcg-step[data-tcg-stage="modality"] .tcg-options,
    .tcg-step[data-tcg-stage="addons"] .tcg-options,
    .tcg-form-grid {
        grid-template-columns: 1fr !important;
    }

    .tcg-option--modality {
        min-height: 92px !important;
        padding: 15px 16px !important;
    }

    .tcg-option--modality .tcg-modality-price__main strong,
    .tcg-option--modality .tcg-modality-price__main .amount,
    .tcg-option--modality .tcg-modality-price__main bdi {
        font-size: 20px !important;
    }

    .tcg-guarantee-value {
        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 5px !important;
    }

    .tcg-choice-actions .tcg-btn,
    .tcg-plan-wizard__foot .tcg-btn {
        flex: 1 1 auto !important;
    }
}

/* ============================================================
   v0.3.1 - CONTRATANTE + ENCABEZADO COMPACTO + MÓVIL ORDENADO
   ============================================================ */

.tcg-progress-row {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin: 14px 0 18px !important;
}

.tcg-progress-row .tcg-plan-progress {
    margin: 0 !important;
    flex: 0 0 auto !important;
}

.tcg-stage-copy {
    display: none !important;
    min-width: 0 !important;
}

.tcg-plan-wizard.tcg-head-compact .tcg-stage-copy {
    display: block !important;
}

.tcg-stage-copy strong {
    display: block !important;
    color: #071225 !important;
    font: 620 18px/1.14 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
    letter-spacing: -0.35px !important;
    margin: 0 0 3px !important;
}

.tcg-stage-copy span {
    display: block !important;
    color: #64748b !important;
    font: 420 12.4px/1.42 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
    letter-spacing: .01em !important;
}

/* En pasos compactos el título vive al lado de los números */
.tcg-plan-wizard.tcg-head-compact .tcg-step.is-active > h4,
.tcg-plan-wizard.tcg-head-compact .tcg-step.is-active > .tcg-step-intro,
.tcg-plan-wizard.tcg-head-compact .tcg-step.is-active > p:first-of-type {
    display: none !important;
}

.tcg-plan-wizard.tcg-head-compact .tcg-progress-row {
    margin: 2px 0 16px !important;
}

/* Paso 2 garantía más claro y compacto */
.tcg-guarantee-box__inner {
    padding: 16px 17px !important;
    border-radius: 18px !important;
}

.tcg-guarantee-copy strong {
    font-size: 15px !important;
    font-weight: 620 !important;
}

.tcg-guarantee-status {
    font-size: 11px !important;
    font-weight: 620 !important;
    padding: 6px 9px !important;
    margin-bottom: 9px !important;
}

.tcg-guarantee-copy p {
    font-size: 12.6px !important;
    line-height: 1.48 !important;
    margin: 0 0 6px !important;
}

.tcg-guarantee-value {
    margin-top: 12px !important;
    padding-top: 12px !important;
}

.tcg-choice-actions {
    margin-top: 14px !important;
}

/* Paso final: más vibra de contratante */
.tcg-final-grid {
    gap: 12px !important;
    margin-top: 12px !important;
}

.tcg-customer {
    padding: 14px !important;
    border-radius: 18px !important;
}

.tcg-form-grid {
    gap: 10px !important;
    margin-bottom: 10px !important;
}

.tcg-field span {
    font-size: 11.6px !important;
    font-weight: 590 !important;
}

.tcg-field input {
    height: 40px !important;
    border-radius: 13px !important;
    font-size: 13px !important;
}

.tcg-contract-info {
    border: 1px solid #dbe7f5 !important;
    background: #f8fbff !important;
    border-radius: 16px !important;
    padding: 13px 14px !important;
}

.tcg-contract-info strong {
    display: block !important;
    color: #071225 !important;
    font: 620 13.4px/1.2 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
    margin-bottom: 5px !important;
}

.tcg-contract-info p {
    margin: 0 0 7px !important;
    color: #64748b !important;
    font: 420 12.4px/1.45 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
}

.tcg-contract-info a {
    display: inline-flex !important;
    align-items: center !important;
    color: #007AFD !important;
    font: 650 12.2px/1 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
    text-decoration: none !important;
}

.tcg-contract-info a:hover {
    color: #071225 !important;
}

/* Resumen ajustado para que no quede fuera de sitio */
.tcg-summary-box {
    padding: 13px 14px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.tcg-summary-row {
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 9px 0 !important;
}

.tcg-summary-row span {
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
}

.tcg-note-soft--summary {
    padding: 12px 14px !important;
    border-radius: 14px !important;
}

/* Botonera: en desktop mantiene orden cómodo */
.tcg-plan-wizard__foot {
    gap: 10px !important;
}

/* Móvil: botón azul siempre al final */
@media (max-width: 820px) {
    .tcg-progress-row {
        align-items: flex-start !important;
        gap: 10px !important;
        margin: 10px 0 15px !important;
    }

    .tcg-stage-copy strong {
        font-size: 16.5px !important;
    }

    .tcg-stage-copy span {
        font-size: 12px !important;
    }

    .tcg-plan-wizard__foot {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    .tcg-plan-wizard__foot .tcg-btn {
        width: 100% !important;
        min-height: 44px !important;
        flex: none !important;
    }

    .tcg-plan-wizard__foot [data-tcg-prev] {
        order: 1 !important;
    }

    .tcg-plan-wizard__foot [data-tcg-skip-current] {
        order: 2 !important;
    }

    .tcg-plan-wizard__foot [data-tcg-next],
    .tcg-plan-wizard__foot [data-tcg-finish] {
        order: 3 !important;
    }

    .tcg-contract-info,
    .tcg-summary-box,
    .tcg-note-soft--summary {
        border-radius: 15px !important;
    }
}

/* ============================================================
   v1.0.1 - RESUMEN LIMPIO + FIRMA INTEGRADA + TEXTO GARANTÍA
   ============================================================ */

/* Resumen: solo contenedor general sutil, filas sin cápsulas/fondos */
.tcg-summary-box {
    border: 1px solid #dbe7f5 !important;
    border-radius: 18px !important;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%) !important;
    padding: 15px 16px !important;
    box-shadow: none !important;
    overflow: hidden !important;
}

.tcg-summary-title {
    display: block !important;
    margin: 0 0 8px !important;
    color: #071225 !important;
    font: 650 14px/1.2 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
}

.tcg-summary-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 11px 0 !important;
    border: 0 !important;
    border-top: 1px solid #e2e8f0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
}

.tcg-summary-row:first-of-type {
    border-top: 1px solid #e2e8f0 !important;
}

.tcg-summary-row span {
    color: #334155 !important;
    font: 500 12.8px/1.35 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
}

.tcg-summary-row strong,
.tcg-summary-row strong .amount,
.tcg-summary-row strong bdi {
    color: #071225 !important;
    font: 680 13px/1 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
    white-space: nowrap !important;
}

/* Garantía: copy más precisa y menos pesada */
.tcg-step[data-tcg-stage="guarantee"] .tcg-step-intro {
    max-width: 860px !important;
}

.tcg-guarantee-copy strong {
    font-size: 14.8px !important;
    font-weight: 620 !important;
}

.tcg-guarantee-copy p {
    font-size: 12.4px !important;
    line-height: 1.48 !important;
    color: #64748b !important;
}

/* Contratante: firma/documentación integrada dentro del mismo cuadro */
.tcg-customer {
    padding: 14px !important;
    border-radius: 18px !important;
    background: #ffffff !important;
}

.tcg-customer .tcg-contract-info {
    margin: 13px 0 0 !important;
    padding: 12px 13px !important;
    border: 0 !important;
    border-top: 1px solid #dbeafe !important;
    border-radius: 0 0 14px 14px !important;
    background: linear-gradient(180deg, rgba(239,246,255,.55), rgba(248,251,255,.85)) !important;
    box-shadow: none !important;
}

.tcg-customer .tcg-contract-info strong {
    display: block !important;
    margin: 0 0 4px !important;
    color: #071225 !important;
    font: 620 12.8px/1.2 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
}

.tcg-customer .tcg-contract-info p {
    margin: 0 !important;
    color: #64748b !important;
    font: 420 12.2px/1.45 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
}

.tcg-customer .tcg-contract-info a {
    display: inline-flex !important;
    margin-left: 4px !important;
    color: #007AFD !important;
    font: 650 12.2px/1 "Epilogue", "Nunito", Poppins, Arial, sans-serif !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

.tcg-customer .tcg-contract-info a:hover {
    color: #071225 !important;
}

/* El resumen final respira mejor debajo del bloque contratante */
.tcg-final-grid {
    gap: 12px !important;
}

.tcg-note-soft--summary {
    margin-top: 10px !important;
    padding: 11px 13px !important;
    font-size: 12.2px !important;
    line-height: 1.42 !important;
    border-radius: 14px !important;
}

@media (max-width: 820px) {
    .tcg-summary-box {
        padding: 14px !important;
        border-radius: 16px !important;
    }

    .tcg-summary-row {
        padding: 10px 0 !important;
        gap: 10px !important;
    }

    .tcg-customer .tcg-contract-info {
        margin-top: 12px !important;
        padding: 11px 12px !important;
    }

    .tcg-customer .tcg-contract-info p,
    .tcg-customer .tcg-contract-info a {
        font-size: 12px !important;
        line-height: 1.45 !important;
    }
}

/* v2.0: precio normal/oferta y total de resumen */
.tcg-option__price del,
.tcg-summary-row del,
.tcg-modality-price del{
    color:#94a3b8;
    font-weight:700;
    margin-right:6px;
}
.tcg-option__price ins,
.tcg-summary-row ins,
.tcg-modality-price ins{
    color:#0f172a;
    text-decoration:none;
    font-weight:900;
}
.tcg-summary-row--total{
    margin-top:10px;
    padding-top:12px;
    border-top:1px solid #bfdbfe;
}
.tcg-summary-row--total strong{
    font-size:18px;
    font-weight:950;
}

/* ============================================================
   v2.0.1 - order-pay directo, modo landing, precios premium
   ============================================================ */

.tcg-plan-wizard[data-tcg-mode="landing"] {
    position: relative !important;
    inset: auto !important;
    z-index: 1 !important;
    display: flex !important;
    padding: 28px 0 !important;
    background: transparent !important;
    align-items: stretch !important;
    justify-content: center !important;
}

.tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-wizard__backdrop,
.tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-wizard__close {
    display: none !important;
}

.tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-wizard__card {
    width: min(760px, calc(100vw - 30px)) !important;
    max-height: none !important;
    overflow: visible !important;
    border-radius: 24px !important;
    box-shadow: 0 18px 55px rgba(7,18,37,.08) !important;
    border: 1px solid #dbe7f5 !important;
}

.tcg-plan-wizard[data-tcg-mode="landing"] .tcg-kicker {
    display: none !important;
}

.tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-wizard__head h3 {
    font-size: clamp(28px, 3.2vw, 42px) !important;
    letter-spacing: -.9px !important;
}

.tcg-plan-wizard[data-tcg-mode="landing"] .tcg-progress-row {
    margin-bottom: 18px !important;
}

.tcg-modality-price__main strong,
.tcg-modality-price__main strong .amount,
.tcg-modality-price__main strong bdi,
.tcg-modality-price__main strong .woocommerce-Price-currencySymbol {
    font-size: clamp(25px, 3.1vw, 34px) !important;
    line-height: .98 !important;
    letter-spacing: -.9px !important;
    font-weight: 820 !important;
}

.tcg-modality-price__total,
.tcg-modality-price__total strong,
.tcg-modality-price__total strong .amount,
.tcg-modality-price__total strong bdi,
.tcg-modality-price__total strong .woocommerce-Price-currencySymbol {
    font-size: 13.5px !important;
    letter-spacing: -.1px !important;
}

.tcg-price-offer {
    display: grid !important;
    gap: 5px !important;
    align-items: start !important;
}

.tcg-price-offer__badge,
.tcg-price-offer__now {
    display: inline-flex !important;
    width: max-content !important;
    max-width: 100% !important;
    border-radius: 999px !important;
    padding: 4px 8px !important;
    background: #eff6ff !important;
    color: #007AFD !important;
    font: 760 10.5px/1 "Epilogue", Arial, sans-serif !important;
    letter-spacing: .01em !important;
}

.tcg-price-offer__sale,
.tcg-price-offer__sale .amount,
.tcg-price-offer__sale bdi,
.tcg-price-offer__sale .woocommerce-Price-currencySymbol {
    color: #007AFD !important;
    text-decoration: none !important;
    font: 850 23px/1 "Epilogue", Arial, sans-serif !important;
    letter-spacing: -.45px !important;
}

.tcg-price-offer__regular {
    color: #64748b !important;
    font: 620 12px/1.1 "Epilogue", Arial, sans-serif !important;
}

.tcg-price-offer__regular del,
.tcg-price-offer__regular del .amount,
.tcg-price-offer__regular del bdi,
.tcg-price-offer__regular del .woocommerce-Price-currencySymbol {
    color: #94a3b8 !important;
    font-weight: 650 !important;
}

.tcg-price-simple,
.tcg-price-simple .amount,
.tcg-price-simple bdi,
.tcg-price-simple .woocommerce-Price-currencySymbol {
    color: #007AFD !important;
    font: 800 22px/1 "Epilogue", Arial, sans-serif !important;
    letter-spacing: -.35px !important;
}

.tcg-option--addon .tcg-option__content {
    gap: 6px !important;
}

.tcg-option--addon .tcg-option__price {
    margin-top: 7px !important;
}

.tcg-summary-row strong .tcg-price-offer,
.tcg-summary-row strong .tcg-price-simple {
    display: inline !important;
}

.tcg-phone-wrap {
    display: flex !important;
    align-items: center !important;
    min-height: 46px !important;
    border: 1px solid var(--tcg-line) !important;
    border-radius: 14px !important;
    background: #f8fafc !important;
    overflow: hidden !important;
}

.tcg-phone-wrap:focus-within {
    border-color: var(--tcg-blue) !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(0,122,253,.10) !important;
}

.tcg-phone-wrap em {
    align-self: stretch !important;
    display: inline-flex !important;
    align-items: center !important;
    padding: 0 12px !important;
    border-right: 1px solid #dbe7f5 !important;
    color: #071225 !important;
    background: #eef6ff !important;
    font: 760 13px/1 "Epilogue", Arial, sans-serif !important;
    font-style: normal !important;
}

.tcg-phone-wrap input,
.tcg-field .tcg-phone-wrap input {
    min-height: 44px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-left: 12px !important;
}

@media (max-width: 820px) {
    .tcg-plan-wizard[data-tcg-mode="landing"] {
        padding: 18px 0 !important;
    }
    .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-wizard__card {
        width: min(100%, calc(100vw - 20px)) !important;
        border-radius: 22px !important;
    }
    .tcg-modality-price__main strong,
    .tcg-modality-price__main strong .amount,
    .tcg-modality-price__main strong bdi,
    .tcg-modality-price__main strong .woocommerce-Price-currencySymbol {
        font-size: 26px !important;
    }
}

/* ============================================================
   Tudo Compra Guiada v2.0.5 · ajuste estable premium
   Base: v2.0.1 funcional, con correcciones acotadas
   ============================================================ */
.tcg-landing-back{
    max-width:1080px!important;
    margin:18px auto 12px!important;
    padding:0 18px!important;
    font-family:"Work Sans",Inter,Arial,sans-serif!important;
}
.tcg-landing-back a{
    display:inline-flex!important;
    align-items:center!important;
    gap:8px!important;
    color:#007AFD!important;
    background:#fff!important;
    border:1px solid #dbeafe!important;
    border-radius:999px!important;
    padding:10px 16px!important;
    text-decoration:none!important;
    font-weight:800!important;
    font-size:14px!important;
    box-shadow:0 10px 24px rgba(15,23,42,.05)!important;
}
.tcg-plan-wizard__card{
    max-width:1040px!important;
    padding:34px 38px 30px!important;
    border-radius:28px!important;
}
.tcg-plan-landing .tcg-plan-wizard__card{
    max-width:1080px!important;
    margin:22px auto!important;
}
.tcg-plan-wizard__head{
    margin-bottom:22px!important;
}
.tcg-plan-wizard__head h3,
.tcg-plan-landing .tcg-plan-wizard__head h3{
    font-size:clamp(34px,3.8vw,52px)!important;
    line-height:1.02!important;
    letter-spacing:-2.2px!important;
    margin:0 0 10px!important;
}
.tcg-head-compact .tcg-plan-wizard__head h3,
.tcg-plan-landing.tcg-head-compact .tcg-plan-wizard__head h3{
    font-size:clamp(28px,3vw,40px)!important;
}
.tcg-plan-wizard__head p,
.tcg-stage-copy span,
.tcg-step p,
.tcg-step-intro{
    font-size:16px!important;
    line-height:1.45!important;
    letter-spacing:.01em!important;
}
.tcg-step h4{
    font-size:clamp(25px,2.8vw,36px)!important;
    line-height:1.08!important;
    letter-spacing:-1.3px!important;
    margin:0 0 10px!important;
}
.tcg-plan-progress span{
    width:42px!important;
    height:42px!important;
    font-size:18px!important;
    line-height:42px!important;
}
.tcg-options{
    gap:16px!important;
}
.tcg-option--modality{
    min-height:126px!important;
    padding:22px 24px!important;
    border-radius:22px!important;
    gap:18px!important;
}
.tcg-option--modality .tcg-option__content > strong{
    font-size:19px!important;
    line-height:1.15!important;
    margin-bottom:9px!important;
}
.tcg-option--modality .tcg-option__check{
    width:30px!important;
    height:30px!important;
    min-width:30px!important;
    margin-top:2px!important;
}
.tcg-option--modality .tcg-modality-price,
.tcg-option--modality .tcg-modality-price > span,
.tcg-option--modality .tcg-modality-price__main,
.tcg-option--modality .tcg-modality-price__total,
.tcg-option--modality.is-selected .tcg-modality-price,
.tcg-option--modality.is-selected .tcg-modality-price > span,
.tcg-option--modality.is-selected .tcg-modality-price__main,
.tcg-option--modality.is-selected .tcg-modality-price__total{
    display:block!important;
    background:transparent!important;
    border:0!important;
    box-shadow:none!important;
    padding:0!important;
    margin:0!important;
}
.tcg-option--modality .tcg-modality-price__main strong,
.tcg-option--modality .tcg-modality-price__main strong .amount,
.tcg-option--modality .tcg-modality-price__main strong bdi,
.tcg-option--modality .tcg-modality-price__main .amount,
.tcg-option--modality .tcg-modality-price__main bdi{
    font-size:clamp(27px,3vw,38px)!important;
    line-height:1!important;
    letter-spacing:-1.8px!important;
    color:#007AFD!important;
    font-weight:900!important;
}
.tcg-option--modality .tcg-modality-price__main .woocommerce-Price-currencySymbol{
    font-size:.82em!important;
    margin-right:2px!important;
}
.tcg-option--modality .tcg-modality-price__total{
    margin-top:5px!important;
    color:#64748b!important;
    font-size:14.5px!important;
    font-weight:700!important;
}
.tcg-option--modality .tcg-modality-price__total strong,
.tcg-option--modality .tcg-modality-price__total strong .amount,
.tcg-option--modality .tcg-modality-price__total strong bdi,
.tcg-option--modality .tcg-modality-price__total .amount,
.tcg-option--modality .tcg-modality-price__total bdi{
    color:#071225!important;
    font-size:15px!important;
    letter-spacing:-.2px!important;
    font-weight:850!important;
}
.tcg-option--addon{
    display:grid!important;
    grid-template-columns:34px minmax(0,1fr) auto!important;
    align-items:center!important;
    gap:16px!important;
    width:100%!important;
    max-width:560px!important;
    min-height:138px!important;
    padding:22px 24px!important;
    border-radius:22px!important;
}
.tcg-option--addon .tcg-option__check{
    width:30px!important;
    height:30px!important;
    min-width:30px!important;
}
.tcg-option--addon .tcg-option__content{
    display:block!important;
    min-width:0!important;
    overflow:hidden!important;
}
.tcg-option--addon .tcg-option__content > strong{
    display:block!important;
    font-size:18px!important;
    line-height:1.18!important;
    margin-bottom:9px!important;
    color:#071225!important;
}
.tcg-option--addon .tcg-option__price{
    display:block!important;
    margin:0 0 8px!important;
    max-width:100%!important;
    white-space:normal!important;
}
.tcg-option--addon small{
    display:block!important;
    color:#64748b!important;
    font-size:14px!important;
    line-height:1.35!important;
    max-width:360px!important;
}
.tcg-option--addon .tcg-option__action{
    align-self:center!important;
    white-space:nowrap!important;
    border-radius:999px!important;
    padding:11px 18px!important;
    font-size:15px!important;
    font-weight:850!important;
    background:#eef6ff!important;
    color:#007AFD!important;
}
.tcg-price-offer{
    display:flex!important;
    flex-direction:column!important;
    align-items:flex-start!important;
    gap:5px!important;
    max-width:100%!important;
    white-space:normal!important;
}
.tcg-price-offer__top{
    display:flex!important;
    align-items:center!important;
    gap:9px!important;
    flex-wrap:wrap!important;
}
.tcg-price-offer__sale,
.tcg-price-offer__sale .amount,
.tcg-price-offer__sale bdi{
    color:#007AFD!important;
    font-size:24px!important;
    line-height:1!important;
    font-weight:900!important;
    letter-spacing:-1px!important;
}
.tcg-price-offer__sale .woocommerce-Price-currencySymbol{
    font-size:.82em!important;
}
.tcg-price-offer__badge,
.tcg-price-offer__now{
    display:inline-flex!important;
    align-items:center!important;
    width:auto!important;
    max-width:100%!important;
    padding:5px 10px!important;
    border-radius:999px!important;
    background:#eef6ff!important;
    color:#007AFD!important;
    font-size:11.5px!important;
    font-weight:850!important;
    letter-spacing:.01em!important;
    text-transform:none!important;
    white-space:nowrap!important;
}
.tcg-price-offer__regular{
    display:block!important;
    color:#64748b!important;
    font-size:13.5px!important;
    line-height:1.2!important;
    font-weight:750!important;
}
.tcg-price-offer__regular del,
.tcg-price-offer__regular .amount,
.tcg-price-offer__regular bdi{
    color:#94a3b8!important;
    font-size:13.5px!important;
    font-weight:800!important;
}
.tcg-price-simple,
.tcg-price-simple .amount,
.tcg-price-simple bdi{
    color:#007AFD!important;
    font-size:22px!important;
    font-weight:900!important;
    letter-spacing:-.7px!important;
}
.tcg-final-grid{
    display:grid!important;
    grid-template-columns:minmax(0,1.25fr) minmax(280px,.75fr)!important;
    gap:18px!important;
    align-items:start!important;
}
.tcg-customer,
.tcg-summary-box{
    border-radius:20px!important;
    padding:20px 22px!important;
}
.tcg-form-grid{
    gap:14px!important;
}
.tcg-field span{
    font-size:13.5px!important;
}
.tcg-field input{
    min-height:46px!important;
    font-size:15.5px!important;
    border-radius:14px!important;
}
.tcg-contract-info{
    margin-top:16px!important;
    padding:16px 18px!important;
    border-radius:16px!important;
}
.tcg-summary-title{
    font-size:17px!important;
    margin-bottom:8px!important;
}
.tcg-summary-row{
    padding:11px 0!important;
    font-size:15.5px!important;
}
.tcg-summary-row strong,
.tcg-summary-row strong .amount,
.tcg-summary-row strong bdi{
    font-size:15.5px!important;
}
.tcg-summary-row--total strong,
.tcg-summary-row--total strong .amount,
.tcg-summary-row--total strong bdi{
    font-size:18px!important;
}
.tcg-plan-wizard__foot{
    padding-top:18px!important;
    gap:12px!important;
}
.tcg-plan-wizard__foot .tcg-btn{
    min-height:50px!important;
    padding:0 26px!important;
    font-size:15.5px!important;
    border-radius:18px!important;
}
.tcg-open-plan-link{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    background:#007AFD!important;
    color:#fff!important;
    text-decoration:none!important;
    border-radius:999px!important;
    padding:13px 22px!important;
    font-weight:850!important;
    box-shadow:0 14px 28px rgba(0,122,253,.22)!important;
}
@media (max-width: 900px){
    .tcg-plan-wizard__card{padding:24px 20px!important;border-radius:24px!important;}
    .tcg-options{grid-template-columns:1fr!important;}
    .tcg-final-grid{grid-template-columns:1fr!important;}
    .tcg-option--addon{grid-template-columns:30px 1fr!important;max-width:none!important;}
    .tcg-option--addon .tcg-option__action{grid-column:2!important;justify-self:start!important;margin-top:6px!important;}
    .tcg-plan-wizard__head h3{font-size:34px!important;}
}
@media (max-width: 560px){
    .tcg-option--modality .tcg-modality-price__main strong,
    .tcg-option--modality .tcg-modality-price__main strong .amount,
    .tcg-option--modality .tcg-modality-price__main strong bdi,
    .tcg-option--modality .tcg-modality-price__main .amount,
    .tcg-option--modality .tcg-modality-price__main bdi{
        font-size:29px!important;
    }
    .tcg-plan-wizard__foot{flex-wrap:wrap!important;}
    .tcg-plan-wizard__foot .tcg-btn{width:100%!important;}
}


/* ============================================================
   Tudo Compra Guiada v2.0.6 · ajuste sobrio anti-exagerado
   Mantiene la lógica estable de v2.0.5 y solo compacta la UI.
   ============================================================ */
.tcg-plan-wizard__card{
    max-width:920px!important;
    padding:26px 28px 24px!important;
    border-radius:24px!important;
}
.tcg-plan-landing .tcg-plan-wizard__card{
    max-width:960px!important;
    margin:18px auto!important;
}
.tcg-plan-wizard__head{
    margin-bottom:16px!important;
    max-width:680px!important;
}
.tcg-plan-wizard__head h3,
.tcg-plan-landing .tcg-plan-wizard__head h3,
.tcg-head-compact .tcg-plan-wizard__head h3,
.tcg-plan-landing.tcg-head-compact .tcg-plan-wizard__head h3{
    font-size:32px!important;
    line-height:1.08!important;
    letter-spacing:-1.1px!important;
    margin:0 0 8px!important;
    font-weight:780!important;
}
.tcg-plan-wizard__head p,
.tcg-stage-copy span,
.tcg-step p,
.tcg-step-intro{
    font-size:14.5px!important;
    line-height:1.45!important;
    letter-spacing:0!important;
}
.tcg-kicker{
    padding:5px 9px!important;
    font-size:9.5px!important;
    letter-spacing:.10em!important;
    margin-bottom:8px!important;
}
.tcg-progress-row{
    margin-bottom:16px!important;
}
.tcg-plan-progress{
    gap:8px!important;
    margin:0 0 16px!important;
}
.tcg-plan-progress span{
    width:34px!important;
    height:34px!important;
    min-width:34px!important;
    font-size:14px!important;
    line-height:34px!important;
}
.tcg-step h4{
    font-size:26px!important;
    line-height:1.12!important;
    letter-spacing:-.75px!important;
    margin:0 0 7px!important;
    font-weight:760!important;
}
.tcg-options{
    gap:12px!important;
    margin-top:14px!important;
}
.tcg-option{
    border-radius:18px!important;
    box-shadow:none!important;
}
.tcg-option--modality{
    min-height:96px!important;
    padding:16px 18px!important;
    border-radius:18px!important;
    gap:13px!important;
    grid-template-columns:26px minmax(0,1fr)!important;
    align-items:center!important;
}
.tcg-option--modality .tcg-option__check{
    width:24px!important;
    height:24px!important;
    min-width:24px!important;
    margin-top:0!important;
}
.tcg-option--modality .tcg-option__content > strong{
    font-size:15.5px!important;
    line-height:1.15!important;
    margin:0 0 6px!important;
    letter-spacing:-.25px!important;
    text-align:left!important;
    font-weight:780!important;
}
.tcg-option--modality .tcg-modality-price,
.tcg-option--modality .tcg-modality-price > span,
.tcg-option--modality .tcg-modality-price__main,
.tcg-option--modality .tcg-modality-price__total{
    display:block!important;
    background:transparent!important;
    border:0!important;
    box-shadow:none!important;
    padding:0!important;
    margin:0!important;
}
.tcg-option--modality .tcg-modality-price__main strong,
.tcg-option--modality .tcg-modality-price__main strong .amount,
.tcg-option--modality .tcg-modality-price__main strong bdi,
.tcg-option--modality .tcg-modality-price__main .amount,
.tcg-option--modality .tcg-modality-price__main bdi{
    font-size:24px!important;
    line-height:1!important;
    letter-spacing:-.9px!important;
    font-weight:820!important;
    color:#007AFD!important;
}
.tcg-option--modality .tcg-modality-price__main .woocommerce-Price-currencySymbol{
    font-size:.74em!important;
    margin-right:1px!important;
}
.tcg-option--modality .tcg-modality-price__total{
    margin-top:4px!important;
    font-size:12.5px!important;
    line-height:1.2!important;
    font-weight:600!important;
    color:#64748b!important;
}
.tcg-option--modality .tcg-modality-price__total strong,
.tcg-option--modality .tcg-modality-price__total strong .amount,
.tcg-option--modality .tcg-modality-price__total strong bdi,
.tcg-option--modality .tcg-modality-price__total .amount,
.tcg-option--modality .tcg-modality-price__total bdi{
    font-size:12.8px!important;
    font-weight:760!important;
    letter-spacing:0!important;
    color:#071225!important;
}
.tcg-option--addon{
    max-width:520px!important;
    min-height:112px!important;
    padding:16px 18px!important;
    border-radius:18px!important;
    grid-template-columns:26px minmax(0,1fr) auto!important;
    gap:12px!important;
    align-items:center!important;
}
.tcg-option--addon .tcg-option__check{
    width:24px!important;
    height:24px!important;
    min-width:24px!important;
}
.tcg-option--addon .tcg-option__content > strong{
    font-size:16px!important;
    line-height:1.15!important;
    margin-bottom:6px!important;
    letter-spacing:-.25px!important;
    font-weight:760!important;
}
.tcg-option--addon .tcg-option__price{
    margin:0 0 6px!important;
}
.tcg-option--addon small{
    font-size:13px!important;
    line-height:1.35!important;
    max-width:300px!important;
}
.tcg-option--addon .tcg-option__action{
    min-width:82px!important;
    min-height:34px!important;
    padding:0 15px!important;
    font-size:13.5px!important;
    font-weight:780!important;
    border-radius:999px!important;
}
.tcg-price-offer{
    gap:4px!important;
}
.tcg-price-offer__top{
    gap:7px!important;
}
.tcg-price-offer__sale,
.tcg-price-offer__sale .amount,
.tcg-price-offer__sale bdi{
    font-size:20px!important;
    line-height:1!important;
    font-weight:820!important;
    letter-spacing:-.55px!important;
}
.tcg-price-offer__badge,
.tcg-price-offer__now{
    padding:4px 8px!important;
    font-size:10.5px!important;
    font-weight:760!important;
    line-height:1.05!important;
}
.tcg-price-offer__regular,
.tcg-price-offer__regular del,
.tcg-price-offer__regular .amount,
.tcg-price-offer__regular bdi{
    font-size:12.5px!important;
    line-height:1.15!important;
    font-weight:700!important;
}
.tcg-price-simple,
.tcg-price-simple .amount,
.tcg-price-simple bdi{
    font-size:20px!important;
    font-weight:820!important;
    letter-spacing:-.45px!important;
}
.tcg-guarantee-box__inner{
    padding:18px!important;
    border-radius:18px!important;
}
.tcg-guarantee-copy strong,
.tcg-guarantee-value strong,
.tcg-guarantee-value strong .amount,
.tcg-guarantee-value strong bdi{
    font-size:20px!important;
    line-height:1.1!important;
}
.tcg-plan-wizard__foot{
    margin-top:18px!important;
    padding-top:16px!important;
    gap:10px!important;
}
.tcg-plan-wizard__foot .tcg-btn{
    min-height:42px!important;
    padding:0 20px!important;
    font-size:14px!important;
    border-radius:16px!important;
}
.tcg-final-grid{
    grid-template-columns:minmax(0,1.2fr) minmax(270px,.8fr)!important;
    gap:18px!important;
}
.tcg-customer,
.tcg-summary-box{
    border-radius:18px!important;
    padding:19px 21px!important;
}
.tcg-summary-title{
    font-size:18px!important;
}
.tcg-summary-row{
    font-size:14.5px!important;
    padding:10px 0!important;
}
.tcg-summary-row strong,
.tcg-summary-row strong .amount,
.tcg-summary-row strong bdi{
    font-size:14.5px!important;
}
.tcg-summary-row--total strong,
.tcg-summary-row--total strong .amount,
.tcg-summary-row--total strong bdi{
    font-size:17px!important;
}
@media (max-width:900px){
    .tcg-plan-wizard__card{padding:22px 18px!important;}
    .tcg-options{grid-template-columns:1fr!important;}
    .tcg-final-grid{grid-template-columns:1fr!important;}
    .tcg-option--addon{grid-template-columns:24px minmax(0,1fr)!important;max-width:none!important;}
    .tcg-option--addon .tcg-option__action{grid-column:2!important;justify-self:start!important;margin-top:4px!important;}
}
@media (max-width:560px){
    .tcg-plan-wizard__head h3,
    .tcg-plan-landing .tcg-plan-wizard__head h3{font-size:28px!important;}
    .tcg-step h4{font-size:23px!important;}
    .tcg-option--modality .tcg-modality-price__main strong,
    .tcg-option--modality .tcg-modality-price__main strong .amount,
    .tcg-option--modality .tcg-modality-price__main strong bdi,
    .tcg-option--modality .tcg-modality-price__main .amount,
    .tcg-option--modality .tcg-modality-price__main bdi{font-size:22px!important;}
    .tcg-plan-wizard__foot{flex-wrap:wrap!important;}
    .tcg-plan-wizard__foot .tcg-btn{width:100%!important;}
}


/* ============================================================
   Tudo Compra Guiada v2.0.7 · ajuste sobrio final
   Objetivo: menos exagerado, números y letras menos gruesas.
   No cambia lógica de pedido, IVA, order-pay ni flujo.
   ============================================================ */

/* Caja general algo más tranquila */
.tcg-plan-wizard__card{
    max-width: 900px !important;
    padding: 24px 26px 22px !important;
}

/* Encabezado: menos grande y menos pesado */
.tcg-plan-wizard__head h3,
.tcg-plan-landing .tcg-plan-wizard__head h3,
.tcg-head-compact .tcg-plan-wizard__head h3,
.tcg-plan-landing.tcg-head-compact .tcg-plan-wizard__head h3,
#tcg-plan-title{
    font-size: 30px !important;
    line-height: 1.12 !important;
    letter-spacing: -0.75px !important;
    font-weight: 650 !important;
}

.tcg-plan-wizard__head p,
.tcg-stage-copy span,
.tcg-step p,
.tcg-step-intro{
    font-size: 13.6px !important;
    line-height: 1.46 !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
}

.tcg-step h4,
.tcg-stage-copy strong{
    font-size: 22px !important;
    line-height: 1.16 !important;
    letter-spacing: -0.35px !important;
    font-weight: 650 !important;
}

/* Círculos de pasos: más discretos */
.tcg-plan-progress span{
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    line-height: 30px !important;
    font-size: 12.5px !important;
    font-weight: 620 !important;
}

/* Modalidades: menos alto, menos bold */
.tcg-step[data-tcg-stage="modality"] .tcg-options,
.tcg-step[data-tcg-step="1"] .tcg-options{
    gap: 11px !important;
}

.tcg-option--modality{
    min-height: 88px !important;
    padding: 14px 16px !important;
    border-radius: 17px !important;
    gap: 11px !important;
    grid-template-columns: 23px minmax(0,1fr) !important;
}

.tcg-option--modality .tcg-option__check{
    width: 21px !important;
    height: 21px !important;
    min-width: 21px !important;
}

.tcg-option--modality.is-selected .tcg-option__check::after{
    width: 7px !important;
    height: 7px !important;
}

.tcg-option--modality .tcg-option__content > strong{
    font-size: 14.2px !important;
    line-height: 1.18 !important;
    margin-bottom: 5px !important;
    letter-spacing: -0.05px !important;
    font-weight: 620 !important;
}

.tcg-option--modality .tcg-modality-price__main,
.tcg-option--modality .tcg-modality-price__main strong,
.tcg-option--modality .tcg-modality-price__main strong .amount,
.tcg-option--modality .tcg-modality-price__main strong bdi,
.tcg-option--modality .tcg-modality-price__main .amount,
.tcg-option--modality .tcg-modality-price__main bdi,
.tcg-option--modality .tcg-modality-price__main .woocommerce-Price-amount,
.tcg-option--modality .tcg-modality-price__main .woocommerce-Price-currencySymbol{
    font-size: 19px !important;
    line-height: 1.05 !important;
    letter-spacing: -0.35px !important;
    font-weight: 650 !important;
    color: #007AFD !important;
}

.tcg-option--modality .tcg-modality-price__main .woocommerce-Price-currencySymbol{
    font-size: .76em !important;
    margin-right: 1px !important;
}

.tcg-option--modality .tcg-modality-price__total{
    margin-top: 4px !important;
    font-size: 11.8px !important;
    line-height: 1.25 !important;
    font-weight: 430 !important;
    color: #64748b !important;
}

.tcg-option--modality .tcg-modality-price__total strong,
.tcg-option--modality .tcg-modality-price__total strong .amount,
.tcg-option--modality .tcg-modality-price__total strong bdi,
.tcg-option--modality .tcg-modality-price__total .amount,
.tcg-option--modality .tcg-modality-price__total bdi,
.tcg-option--modality .tcg-modality-price__total .woocommerce-Price-amount,
.tcg-option--modality .tcg-modality-price__total .woocommerce-Price-currencySymbol{
    font-size: 11.8px !important;
    font-weight: 560 !important;
    letter-spacing: 0 !important;
    color: #071225 !important;
}

/* Adicionales: oferta visible, pero no gritona */
.tcg-option--addon{
    min-height: 94px !important;
    padding: 14px 16px !important;
    border-radius: 17px !important;
    grid-template-columns: 23px minmax(0,1fr) auto !important;
    gap: 11px !important;
    max-width: 500px !important;
}

.tcg-option--addon .tcg-option__check{
    width: 21px !important;
    height: 21px !important;
    min-width: 21px !important;
}

.tcg-option--addon .tcg-option__content > strong{
    font-size: 14.5px !important;
    font-weight: 620 !important;
    line-height: 1.18 !important;
    margin-bottom: 5px !important;
}

.tcg-option--addon small{
    font-size: 12px !important;
    line-height: 1.34 !important;
    font-weight: 400 !important;
}

.tcg-price-offer__sale,
.tcg-price-offer__sale .amount,
.tcg-price-offer__sale bdi,
.tcg-price-simple,
.tcg-price-simple .amount,
.tcg-price-simple bdi{
    font-size: 17px !important;
    line-height: 1 !important;
    font-weight: 650 !important;
    letter-spacing: -0.25px !important;
}

.tcg-price-offer__badge,
.tcg-price-offer__now{
    padding: 3px 7px !important;
    font-size: 9.8px !important;
    font-weight: 620 !important;
    line-height: 1.05 !important;
}

.tcg-price-offer__regular,
.tcg-price-offer__regular del,
.tcg-price-offer__regular .amount,
.tcg-price-offer__regular bdi{
    font-size: 11.5px !important;
    font-weight: 500 !important;
}

.tcg-option--addon .tcg-option__action{
    min-width: 72px !important;
    min-height: 31px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
    font-weight: 620 !important;
}

/* Botones generales menos pesados */
.tcg-btn,
.tcg-plan-wizard__foot .tcg-btn{
    min-height: 40px !important;
    padding: 0 18px !important;
    font-size: 13px !important;
    font-weight: 620 !important;
    border-radius: 14px !important;
}

/* Último paso se mantiene ordenado, pero baja peso de números */
.tcg-customer,
.tcg-summary-box{
    padding: 17px 18px !important;
    border-radius: 17px !important;
}

.tcg-customer-type button{
    font-weight: 600 !important;
}

.tcg-field span{
    font-size: 12.4px !important;
    font-weight: 520 !important;
}

.tcg-field input,
.tcg-phone-wrap input,
.tcg-field .tcg-phone-wrap input{
    font-size: 14px !important;
    font-weight: 430 !important;
}

.tcg-phone-wrap em{
    font-size: 12.6px !important;
    font-weight: 620 !important;
}

.tcg-summary-title{
    font-size: 15.5px !important;
    font-weight: 620 !important;
}

.tcg-summary-row span{
    font-size: 13.2px !important;
    font-weight: 430 !important;
}

.tcg-summary-row strong,
.tcg-summary-row strong .amount,
.tcg-summary-row strong bdi,
.tcg-summary-row strong .woocommerce-Price-amount,
.tcg-summary-row strong .woocommerce-Price-currencySymbol{
    font-size: 13.2px !important;
    font-weight: 600 !important;
}

.tcg-summary-row--total strong,
.tcg-summary-row--total strong .amount,
.tcg-summary-row--total strong bdi,
.tcg-summary-row--total strong .woocommerce-Price-amount,
.tcg-summary-row--total strong .woocommerce-Price-currencySymbol{
    font-size: 15.2px !important;
    font-weight: 680 !important;
}

.tcg-note-soft--summary{
    font-size: 12.5px !important;
    font-weight: 400 !important;
}

@media (max-width: 900px){
    .tcg-plan-wizard__head h3,
    .tcg-plan-landing .tcg-plan-wizard__head h3,
    #tcg-plan-title{
        font-size: 28px !important;
    }
    .tcg-step h4,
    .tcg-stage-copy strong{
        font-size: 20px !important;
    }
    .tcg-options{ grid-template-columns: 1fr !important; }
    .tcg-final-grid{ grid-template-columns: 1fr !important; }
}

@media (max-width: 560px){
    .tcg-plan-wizard__card{ padding: 20px 16px 16px !important; }
    .tcg-option--modality .tcg-modality-price__main strong,
    .tcg-option--modality .tcg-modality-price__main strong .amount,
    .tcg-option--modality .tcg-modality-price__main strong bdi,
    .tcg-option--modality .tcg-modality-price__main .amount,
    .tcg-option--modality .tcg-modality-price__main bdi{
        font-size: 18px !important;
    }
}


/* v2.0.8 · Flujo 3 pasos y tipografía más sobria */
.tcg-plan-progress span:nth-child(n+4){display:none!important;}
.tcg-plan-wizard__head h3,
.tcg-plan-landing .tcg-plan-wizard__head h3,
#tcg-plan-title{
    font-size: clamp(28px, 4vw, 46px) !important;
    line-height: 1.04 !important;
    font-weight: 650 !important;
    letter-spacing: -1.25px !important;
}
.tcg-plan-wizard__head p,
.tcg-plan-landing .tcg-plan-wizard__head p{
    font-size: 15.5px !important;
    line-height: 1.42 !important;
    font-weight: 400 !important;
}
.tcg-step h4,
.tcg-stage-copy strong{
    font-size: clamp(22px, 3vw, 32px) !important;
    line-height: 1.08 !important;
    font-weight: 620 !important;
    letter-spacing: -0.8px !important;
}
.tcg-step > p,
.tcg-step-intro,
.tcg-stage-copy span{
    font-size: 14.5px !important;
    line-height: 1.45 !important;
    font-weight: 400 !important;
}
.tcg-plan-progress span{
    width: 38px !important;
    height: 38px !important;
    font-size: 15px !important;
    font-weight: 620 !important;
}
.tcg-options{
    gap: 13px !important;
}
.tcg-option--modality{
    min-height: 108px !important;
    padding: 17px 19px !important;
    border-radius: 18px !important;
}
.tcg-option--modality .tcg-option__content > strong{
    font-size: 16px !important;
    font-weight: 610 !important;
    margin-bottom: 7px !important;
}
.tcg-option--modality .tcg-modality-price__main strong,
.tcg-option--modality .tcg-modality-price__main strong .amount,
.tcg-option--modality .tcg-modality-price__main strong bdi,
.tcg-option--modality .tcg-modality-price__main .amount,
.tcg-option--modality .tcg-modality-price__main bdi,
.tcg-option--modality .tcg-modality-price__main .woocommerce-Price-amount,
.tcg-option--modality .tcg-modality-price__main .woocommerce-Price-currencySymbol{
    font-size: 20.5px !important;
    line-height: 1.04 !important;
    font-weight: 620 !important;
    letter-spacing: -0.55px !important;
}
.tcg-option--modality .tcg-modality-price__total,
.tcg-option--modality .tcg-modality-price__total strong,
.tcg-option--modality .tcg-modality-price__total .amount,
.tcg-option--modality .tcg-modality-price__total bdi{
    font-size: 12px !important;
    font-weight: 480 !important;
}
.tcg-option__check{
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
}
.tcg-addons-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(260px,360px);
    gap:18px;
    align-items:start;
}
.tcg-addons-main .tcg-options{
    grid-template-columns:1fr !important;
}
.tcg-summary--sticky{
    position:sticky;
    top:18px;
}
.tcg-option--addon{
    max-width:none !important;
    min-height:88px !important;
    padding:14px 15px !important;
    grid-template-columns:24px minmax(0,1fr) auto !important;
}
.tcg-option--addon .tcg-option__content > strong{
    font-size:15px!important;
    font-weight:610!important;
}
.tcg-option--addon .tcg-option__action{
    font-size:12px!important;
    font-weight:600!important;
}
.tcg-price-offer__sale,
.tcg-price-offer__sale .amount,
.tcg-price-offer__sale bdi,
.tcg-price-simple,
.tcg-price-simple .amount,
.tcg-price-simple bdi{
    font-size:16px!important;
    font-weight:620!important;
}
.tcg-customer--wide{
    max-width:980px;
    margin:0 auto;
}
.tcg-customer--wide .tcg-form-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
}
.tcg-customer--wide .tcg-form-grid--contact{
    grid-template-columns:repeat(2,minmax(0,1fr));
}
.tcg-optional-badge{
    display:inline-flex;
    align-items:center;
    margin-left:6px;
    padding:2px 7px;
    border-radius:999px;
    background:#edf5ff;
    color:#007AFD;
    font-style:normal;
    font-size:10px;
    font-weight:650;
    vertical-align:middle;
}
.tcg-signature-block{
    margin-top:14px;
    padding:14px;
    border:1px solid #dbeafe;
    border-radius:16px;
    background:#f8fbff;
}
.tcg-signature-block > strong{
    display:block;
    font-size:13.5px;
    font-weight:650;
    color:#071225;
    margin-bottom:10px;
}
.tcg-signature-options{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
}
.tcg-signature-options button{
    appearance:none;
    border:1px solid #d8e6f7;
    background:#fff;
    border-radius:14px;
    padding:12px 13px;
    text-align:left;
    color:#071225;
    font-size:13px;
    font-weight:630;
    line-height:1.25;
    cursor:pointer;
}
.tcg-signature-options button span{
    display:block;
    margin-top:3px;
    color:#64748b;
    font-size:11.5px;
    font-weight:430;
}
.tcg-signature-options button.is-selected{
    border-color:#007AFD;
    background:#f4f9ff;
    box-shadow:0 0 0 2px rgba(0,122,253,.08);
}
.tcg-contract-info{
    margin-top:14px!important;
}
.tcg-summary-box{
    padding:16px 17px!important;
}
.tcg-summary-row span,
.tcg-summary-row strong,
.tcg-summary-row strong .amount,
.tcg-summary-row strong bdi{
    font-size:13px!important;
    font-weight:470!important;
}
.tcg-summary-row--total strong,
.tcg-summary-row--total strong .amount,
.tcg-summary-row--total strong bdi{
    font-size:15px!important;
    font-weight:650!important;
}
/* Order-pay: suaviza el resumen estándar WooCommerce generado por el flujo guiado */
body.woocommerce-order-pay .woocommerce table.shop_table th,
body.woocommerce-order-pay .woocommerce table.shop_table td{
    font-weight:500;
}
body.woocommerce-order-pay .woocommerce table.shop_table tfoot th,
body.woocommerce-order-pay .woocommerce table.shop_table tfoot td{
    font-size:16px;
}
@media (max-width:900px){
    .tcg-addons-layout{grid-template-columns:1fr;}
    .tcg-summary--sticky{position:static;}
    .tcg-customer--wide .tcg-form-grid,
    .tcg-customer--wide .tcg-form-grid--contact,
    .tcg-signature-options{grid-template-columns:1fr;}
}
@media (max-width:560px){
    .tcg-plan-wizard__head h3,
    .tcg-plan-landing .tcg-plan-wizard__head h3,
    #tcg-plan-title{font-size:27px!important;}
    .tcg-step h4,.tcg-stage-copy strong{font-size:22px!important;}
    .tcg-option--modality .tcg-modality-price__main strong,
    .tcg-option--modality .tcg-modality-price__main .amount,
    .tcg-option--modality .tcg-modality-price__main bdi{font-size:20px!important;}
}


/* ============================================================
   v2.0.9 · Barra fija superior para landing tipo checkout
   ============================================================ */
body.tcg-has-guided-landing{
    --tcg-guided-top: 0px;
    padding-top: 68px !important;
}
body.admin-bar.tcg-has-guided-landing{
    --tcg-guided-top: 32px;
}
@media screen and (max-width: 782px){
    body.admin-bar.tcg-has-guided-landing{
        --tcg-guided-top: 46px;
    }
}

/* En landing el encabezado grande ya no ocupa espacio; la etapa vive en la barra superior. */
.tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-wizard__head{
    display:none !important;
}

/* Barra superior fija: similar a experiencia checkout limpia. */
.tcg-plan-wizard[data-tcg-mode="landing"] .tcg-progress-row{
    position: fixed !important;
    top: var(--tcg-guided-top) !important;
    left: 0 !important;
    right: 0 !important;
    height: 62px !important;
    z-index: 99980 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    margin: 0 !important;
    padding: 9px clamp(18px, 5vw, 76px) !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(219,231,245,.95) !important;
    border-radius: 0 !important;
    background: rgba(255,255,255,.96) !important;
    box-shadow: 0 10px 26px rgba(15,23,42,.055) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

.tcg-plan-wizard[data-tcg-mode="landing"] .tcg-progress-row::before{
    content: "tudomicilioenundia";
    position: absolute;
    left: clamp(18px, 5vw, 76px);
    color: #007AFD;
    font: 650 13px/1 "Epilogue", "Nunito", Poppins, Arial, sans-serif;
    letter-spacing: -.02em;
}

.tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-progress{
    margin: 0 !important;
    gap: 7px !important;
}
.tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-progress span{
    width: 27px !important;
    height: 27px !important;
    font-size: 11.5px !important;
    font-weight: 640 !important;
}

.tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy{
    display: block !important;
    min-width: min(420px, 44vw) !important;
    max-width: min(520px, 46vw) !important;
}
.tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy strong{
    font-size: 14px !important;
    line-height: 1.15 !important;
    font-weight: 650 !important;
    letter-spacing: -.22px !important;
    margin: 0 0 2px !important;
}
.tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy span{
    font-size: 11.5px !important;
    line-height: 1.25 !important;
    font-weight: 410 !important;
    color: #64748b !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Evita duplicar el título dentro del contenido porque ya está en la barra fija. */
.tcg-plan-wizard[data-tcg-mode="landing"] .tcg-step.is-active > h4,
.tcg-plan-wizard[data-tcg-mode="landing"] .tcg-step.is-active > .tcg-step-intro,
.tcg-plan-wizard[data-tcg-mode="landing"] .tcg-step.is-active > p:first-of-type{
    display:none !important;
}

.tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-wizard__card{
    margin-top: 24px !important;
}

/* Botón volver integrado a la barra superior. */
.tcg-has-guided-landing .tcg-landing-back{
    position: fixed !important;
    top: calc(var(--tcg-guided-top) + 11px) !important;
    left: clamp(18px, 5vw, 76px) !important;
    z-index: 99990 !important;
    margin: 0 !important;
}
.tcg-has-guided-landing .tcg-landing-back a{
    min-height: 38px !important;
    padding: 10px 15px !important;
    border-radius: 999px !important;
    border: 1px solid #dbe7f5 !important;
    background: rgba(255,255,255,.9) !important;
    box-shadow: none !important;
    color: #007AFD !important;
    font-size: 12.5px !important;
    font-weight: 650 !important;
}
/* Si existe botón volver, no repetimos la marca a la izquierda para no recargar. */
.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-progress-row::before{
    content: "";
}

@media (max-width: 860px){
    body.tcg-has-guided-landing{ padding-top: 74px !important; }
    .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-progress-row{
        height: 68px !important;
        justify-content: flex-end !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        gap: 10px !important;
    }
    .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy{
        min-width: 0 !important;
        max-width: 46vw !important;
    }
    .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy span{
        display:none !important;
    }
    .tcg-has-guided-landing .tcg-landing-back{
        left: 12px !important;
        top: calc(var(--tcg-guided-top) + 13px) !important;
    }
    .tcg-has-guided-landing .tcg-landing-back a{
        min-height: 34px !important;
        padding: 8px 11px !important;
        font-size: 11.5px !important;
    }
}

/* ============================================================
   v2.0.10 · Corrección real del paso Servicios adicionales
   - Evita que la tarjeta de adicional se estreche o corte texto.
   - Mantiene la barra fija de landing, pero usa ancho cómodo.
   - Ordena precio oferta / valor normal / etiqueta promocional.
   ============================================================ */

/* Landing más usable con barra fija: ancho suficiente para columnas */
.tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-wizard__card{
    width: min(1040px, calc(100vw - 44px)) !important;
    max-width: 1040px !important;
    padding: 24px 28px 24px !important;
}

/* Paso 3: dos columnas reales, sin comprimir adicionales */
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-addons-layout{
    display: grid !important;
    grid-template-columns: minmax(440px, 1fr) minmax(300px, 380px) !important;
    gap: 20px !important;
    align-items: start !important;
    width: 100% !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-addons-main{
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] [data-tcg-recommendations]{
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    gap: 12px !important;
    margin-top: 0 !important;
}

/* Tarjeta de adicional limpia, horizontal y sin recortes */
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon{
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    min-height: 106px !important;
    padding: 16px 18px !important;
    display: grid !important;
    grid-template-columns: 26px minmax(0, 1fr) auto !important;
    gap: 14px !important;
    align-items: center !important;
    overflow: visible !important;
    text-align: left !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon .tcg-option__content{
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: visible !important;
    gap: 5px !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon .tcg-option__content > strong{
    display: block !important;
    margin: 0 !important;
    color: #071225 !important;
    font-size: 15px !important;
    line-height: 1.18 !important;
    font-weight: 650 !important;
    letter-spacing: -0.18px !important;
    white-space: normal !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon .tcg-option__price{
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 2px 0 0 !important;
    white-space: normal !important;
    overflow: visible !important;
}

/* Precio oferta: promo primero, valor normal abajo, etiqueta breve sin competir */
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    align-items: start !important;
    justify-items: start !important;
    width: 100% !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__sale,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__sale .amount,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__sale bdi,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-simple,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-simple .amount,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-simple bdi{
    color: #007AFD !important;
    font-size: 18px !important;
    line-height: 1.05 !important;
    font-weight: 680 !important;
    letter-spacing: -0.25px !important;
    white-space: nowrap !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__badge,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__now{
    display: inline-flex !important;
    width: auto !important;
    max-width: 100% !important;
    padding: 3px 8px !important;
    border-radius: 999px !important;
    background: #eef6ff !important;
    color: #007AFD !important;
    font-size: 10.2px !important;
    line-height: 1 !important;
    font-weight: 680 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__regular,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__regular del,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__regular .amount,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__regular bdi{
    color: #94a3b8 !important;
    font-size: 12px !important;
    line-height: 1.15 !important;
    font-weight: 520 !important;
    white-space: normal !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon small{
    display: block !important;
    margin: 3px 0 0 !important;
    color: #64748b !important;
    font-size: 12.2px !important;
    line-height: 1.35 !important;
    font-weight: 420 !important;
    white-space: normal !important;
    overflow: visible !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon .tcg-option__action{
    min-width: 78px !important;
    min-height: 34px !important;
    padding: 0 14px !important;
    flex-shrink: 0 !important;
    font-size: 12.3px !important;
    font-weight: 650 !important;
    align-self: center !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-summary--sticky{
    position: sticky !important;
    top: 84px !important;
    width: 100% !important;
    min-width: 0 !important;
}

/* En pantallas medianas/pequeñas, resumen debajo para evitar deformación. */
@media (max-width: 980px){
    .tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-addons-layout{
        grid-template-columns: 1fr !important;
    }
    .tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-summary--sticky{
        position: static !important;
        top: auto !important;
    }
}

@media (max-width: 620px){
    .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-wizard__card{
        width: calc(100vw - 20px) !important;
        padding: 20px 16px 18px !important;
    }
    .tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon{
        grid-template-columns: 24px minmax(0,1fr) !important;
        gap: 12px !important;
    }
    .tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon .tcg-option__action{
        grid-column: 2 !important;
        justify-self: start !important;
        margin-top: 4px !important;
    }
}

/* ============================================================
   v2.0.11 · Landing móvil ordenada + extras en mini tarjetas
   ============================================================ */

/* Título del paso de extras más comercial y menos pesado */
.tcg-plan-wizard[data-tcg-current-stage="addons"] .tcg-stage-copy strong {
    letter-spacing: -0.2px !important;
}

/* Desktop: extras + resumen separados por una línea sutil */
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-addons-layout {
    grid-template-columns: minmax(420px, 1fr) minmax(300px, 390px) !important;
    gap: 26px !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-summary--sticky {
    border-left: 1px solid #e2e8f0 !important;
    padding-left: 26px !important;
}

/* Mini tarjetas: más sutiles y cómodas */
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] [data-tcg-recommendations] {
    gap: 10px !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon {
    min-height: 78px !important;
    padding: 13px 14px !important;
    border-radius: 16px !important;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
    border-color: #dbe7f5 !important;
    box-shadow: none !important;
    grid-template-columns: 22px minmax(0, 1fr) auto !important;
    gap: 12px !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon:hover {
    box-shadow: 0 10px 22px rgba(15, 23, 42, .045) !important;
    transform: none !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon .tcg-option__check {
    width: 20px !important;
    height: 20px !important;
    border-width: 1.5px !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon .tcg-option__content {
    gap: 3px !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon .tcg-option__content > strong {
    font-size: 13.4px !important;
    font-weight: 620 !important;
    line-height: 1.18 !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon .tcg-option__price {
    margin: 1px 0 0 !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer {
    gap: 3px !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__top {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__sale,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__sale .amount,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__sale bdi,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-simple,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-simple .amount,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-simple bdi {
    font-size: 15.5px !important;
    font-weight: 650 !important;
    letter-spacing: -0.15px !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__badge,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__now {
    font-size: 9.7px !important;
    font-weight: 650 !important;
    padding: 3px 7px !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__regular,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__regular del,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__regular .amount,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__regular bdi {
    font-size: 11.1px !important;
    font-weight: 500 !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon small {
    font-size: 11.2px !important;
    line-height: 1.32 !important;
    margin-top: 2px !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon .tcg-option__action {
    min-width: 70px !important;
    min-height: 31px !important;
    padding: 0 12px !important;
    font-size: 11.4px !important;
    font-weight: 640 !important;
    background: #eff6ff !important;
}

.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon.is-selected .tcg-option__action {
    background: #007AFD !important;
    color: #ffffff !important;
}

/* Móvil: primero vuelve a planes, debajo pasos + enunciado. */
@media (max-width: 860px) {
    body.tcg-has-guided-landing {
        padding-top: 126px !important;
    }

    .tcg-has-guided-landing .tcg-landing-back {
        top: calc(var(--tcg-guided-top) + 8px) !important;
        left: 14px !important;
        right: 14px !important;
        width: auto !important;
        display: flex !important;
        justify-content: flex-start !important;
    }

    .tcg-has-guided-landing .tcg-landing-back a {
        min-height: 34px !important;
        padding: 8px 13px !important;
        font-size: 11.7px !important;
        font-weight: 650 !important;
    }

    .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-progress-row {
        top: calc(var(--tcg-guided-top) + 52px) !important;
        height: 66px !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 8px 14px !important;
    }

    .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-progress {
        gap: 6px !important;
        flex: 0 0 auto !important;
    }

    .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-progress span {
        width: 28px !important;
        height: 28px !important;
        font-size: 11.5px !important;
    }

    .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy {
        display: block !important;
        min-width: 0 !important;
        max-width: none !important;
        flex: 1 1 auto !important;
    }

    .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy strong {
        font-size: 13.2px !important;
        line-height: 1.18 !important;
        margin-bottom: 2px !important;
        white-space: normal !important;
    }

    .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy span {
        display: block !important;
        font-size: 10.8px !important;
        line-height: 1.2 !important;
        white-space: normal !important;
        overflow: hidden !important;
        text-overflow: clip !important;
        max-height: 2.4em !important;
    }

    .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-wizard__card {
        margin-top: 0 !important;
    }

    .tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-addons-layout {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-summary--sticky {
        border-left: 0 !important;
        padding-left: 0 !important;
        border-top: 1px solid #e2e8f0 !important;
        padding-top: 14px !important;
    }

    .tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] [data-tcg-recommendations] {
        gap: 9px !important;
    }

    .tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon {
        min-height: auto !important;
        padding: 12px 13px !important;
        border-radius: 15px !important;
        grid-template-columns: 20px minmax(0, 1fr) !important;
        gap: 10px !important;
    }

    .tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon .tcg-option__action {
        grid-column: 2 !important;
        justify-self: start !important;
        margin-top: 5px !important;
    }
}

@media (max-width: 420px) {
    body.tcg-has-guided-landing {
        padding-top: 132px !important;
    }

    .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-progress-row {
        height: 72px !important;
    }

    .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy strong {
        font-size: 12.7px !important;
    }

    .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy span {
        font-size: 10.4px !important;
    }
}


/* ============================================================
   v2.0.12 · Garantía como paso propio + final con extras compactos
   ============================================================ */

/* Si la garantía está activa, se muestra como una etapa independiente. */
.tcg-step[data-tcg-stage="guarantee"] .tcg-guarantee-box{
    max-width: 900px;
    margin: 0 auto;
}
.tcg-step[data-tcg-stage="guarantee"] .tcg-guarantee-box__inner{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(180px,240px);
    gap:18px;
    align-items:center;
    padding:24px 26px !important;
    border-radius:22px !important;
    background:#fff !important;
    border:1px solid #dbe7f5 !important;
    box-shadow:0 16px 40px rgba(15,23,42,.035) !important;
}
.tcg-step[data-tcg-stage="guarantee"] .tcg-guarantee-copy strong{
    display:block;
    font-size:20px !important;
    font-weight:650 !important;
    letter-spacing:-.02em !important;
    color:#071225 !important;
    margin-bottom:8px !important;
}
.tcg-step[data-tcg-stage="guarantee"] .tcg-guarantee-copy p{
    font-size:14px !important;
    line-height:1.5 !important;
    color:#64748b !important;
    margin:7px 0 0 !important;
    font-weight:420 !important;
}
.tcg-step[data-tcg-stage="guarantee"] .tcg-guarantee-status{
    display:inline-flex !important;
    margin-left:0 !important;
    margin-bottom:8px !important;
    padding:4px 9px !important;
    border-radius:999px !important;
    background:#edf5ff !important;
    color:#007AFD !important;
    font-size:11px !important;
    font-weight:650 !important;
}
.tcg-step[data-tcg-stage="guarantee"] .tcg-guarantee-value{
    padding:16px !important;
    border-radius:16px !important;
    background:#f8fbff !important;
    border:1px solid #dbe7f5 !important;
    text-align:left !important;
}
.tcg-step[data-tcg-stage="guarantee"] .tcg-guarantee-value span{
    display:block;
    color:#64748b;
    font-size:11.5px;
    font-weight:550;
    margin-bottom:5px;
}
.tcg-step[data-tcg-stage="guarantee"] .tcg-guarantee-value strong,
.tcg-step[data-tcg-stage="guarantee"] .tcg-guarantee-value .amount,
.tcg-step[data-tcg-stage="guarantee"] .tcg-guarantee-value bdi{
    color:#071225 !important;
    font-size:21px !important;
    font-weight:660 !important;
    letter-spacing:-.02em !important;
}
.tcg-step[data-tcg-stage="guarantee"] .tcg-choice-actions{
    grid-column:1 / -1;
    display:flex;
    gap:10px;
    justify-content:flex-end;
    flex-wrap:wrap;
    margin-top:2px;
}

/* Paso final: el título grande es de cierre; los extras tienen su propio título pequeño. */
.tcg-addons-side-heading{
    margin: 0 0 12px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #e2e8f0 !important;
}
.tcg-addons-side-heading strong{
    display:block;
    color:#071225;
    font-size:16px;
    line-height:1.2;
    font-weight:650;
    letter-spacing:-.02em;
}
.tcg-addons-side-heading span{
    display:block;
    margin-top:3px;
    color:#64748b;
    font-size:12.5px;
    line-height:1.35;
    font-weight:420;
}

/* Dos mini tarjetas por fila en desktop. */
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] [data-tcg-recommendations]{
    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:10px !important;
}
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon{
    width:100% !important;
    min-height:92px !important;
    padding:13px 13px !important;
    grid-template-columns:20px minmax(0,1fr) !important;
    align-items:center !important;
}
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon .tcg-option__action{
    grid-column:2 !important;
    justify-self:start !important;
    margin-top:6px !important;
}
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon .tcg-option__content > strong{
    font-size:13px !important;
    font-weight:620 !important;
}
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__sale,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__sale .amount,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__sale bdi,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-simple,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-simple .amount,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-simple bdi{
    font-size:14.2px !important;
    font-weight:640 !important;
}
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__badge,
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-price-offer__now{
    font-size:9px !important;
    padding:2px 6px !important;
}
.tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] .tcg-option--addon small{
    display:none !important;
}

@media (max-width: 980px){
    .tcg-plan-wizard .tcg-step[data-tcg-stage="addons"] [data-tcg-recommendations]{
        grid-template-columns:1fr !important;
    }
    .tcg-step[data-tcg-stage="guarantee"] .tcg-guarantee-box__inner{
        grid-template-columns:1fr !important;
    }
    .tcg-step[data-tcg-stage="guarantee"] .tcg-choice-actions{
        justify-content:flex-start;
    }
}

@media (max-width: 560px){
    .tcg-step[data-tcg-stage="guarantee"] .tcg-guarantee-box__inner{
        padding:18px 16px !important;
        border-radius:18px !important;
    }
    .tcg-step[data-tcg-stage="guarantee"] .tcg-guarantee-copy strong{
        font-size:17px !important;
    }
    .tcg-step[data-tcg-stage="guarantee"] .tcg-guarantee-copy p{
        font-size:12.8px !important;
    }
    .tcg-step[data-tcg-stage="guarantee"] .tcg-guarantee-value strong,
    .tcg-step[data-tcg-stage="guarantee"] .tcg-guarantee-value .amount,
    .tcg-step[data-tcg-stage="guarantee"] .tcg-guarantee-value bdi{
        font-size:18px !important;
    }
}

/* =========================================================
   Tudo Compra Guiada · Mobile landing header blanco completo
   Corrige espacios transparentes en barra superior móvil
========================================================= */

@media (max-width: 768px) {

  body.tcg-has-guided-landing {
    padding-top: 142px !important;
    background: #f9fafc !important;
  }

  body.tcg-has-guided-landing .tcg-landing-back {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99998 !important;
    height: 72px !important;
    background: #ffffff !important;
    padding: 14px 18px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
  }

  body.admin-bar.tcg-has-guided-landing .tcg-landing-back {
    top: 46px !important;
  }

  body.tcg-has-guided-landing .tcg-landing-back a {
    margin: 0 !important;
    background: #ffffff !important;
    border: 1px solid #d8e6f7 !important;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04) !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-progress-row {
    position: fixed !important;
    top: 72px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99997 !important;
    width: 100% !important;
    min-height: 72px !important;
    margin: 0 !important;
    padding: 10px 14px !important;
    background: #ffffff !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #d8e6f7 !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05) !important;
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
  }

  body.admin-bar.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-progress-row {
    top: 118px !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-progress-row::before {
    display: none !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-progress {
    display: flex !important;
    gap: 6px !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-progress span {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    font-size: 14px !important;
    font-weight: 650 !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy {
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy strong {
    font-size: 15px !important;
    line-height: 1.12 !important;
    font-weight: 680 !important;
    letter-spacing: -0.02em !important;
    max-width: 190px !important;
    display: block !important;
    color: #071229 !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy span {
    font-size: 11.8px !important;
    line-height: 1.22 !important;
    font-weight: 450 !important;
    max-width: 205px !important;
    margin-top: 2px !important;
    display: block !important;
    color: #64748b !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-wizard__card {
    margin-top: 0 !important;
  }
}

@media (max-width: 420px) {

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy strong {
    font-size: 14px !important;
    max-width: 160px !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy span {
    font-size: 11px !important;
    max-width: 170px !important;
  }
}

/* =========================================================
   Tudo Compra Guiada · Barra landing final notebook + móvil
   Ajuste limpio sobre CSS histórico acumulado
========================================================= */

/* DESKTOP / NOTEBOOK */
@media (min-width: 861px) {

  body.tcg-has-guided-landing {
    padding-top: 104px !important;
    background: #f9fafc !important;
  }

  body.tcg-has-guided-landing .tcg-landing-back {
    position: fixed !important;
    top: calc(var(--tcg-guided-top) + 20px) !important;
    left: clamp(34px, 6vw, 96px) !important;
    right: auto !important;
    z-index: 99991 !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
  }

  body.tcg-has-guided-landing .tcg-landing-back a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 43px !important;
    padding: 0 21px !important;
    border-radius: 999px !important;
    border: 1px solid #d8e6f7 !important;
    background: #ffffff !important;
    color: #087bff !important;
    font-size: 13.8px !important;
    font-weight: 650 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.035) !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-progress-row {
    position: fixed !important;
    top: var(--tcg-guided-top) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99980 !important;
    height: 88px !important;
    min-height: 88px !important;
    padding: 14px clamp(280px, 23vw, 460px) !important;
    margin: 0 !important;
    background: #ffffff !important;
    border: 0 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #d8e6f7 !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-progress-row::before {
    display: none !important;
    content: none !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-progress {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    margin: 0 !important;
    flex: 0 0 auto !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-progress span {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    font-size: 14.5px !important;
    font-weight: 660 !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy {
    min-width: 0 !important;
    max-width: 680px !important;
    flex: 1 1 auto !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy strong {
    display: block !important;
    color: #071229 !important;
    font-size: 18.6px !important;
    line-height: 1.15 !important;
    font-weight: 680 !important;
    letter-spacing: -0.025em !important;
    margin: 0 0 3px !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy span {
    display: block !important;
    color: #64748b !important;
    font-size: 14.4px !important;
    line-height: 1.3 !important;
    font-weight: 430 !important;
    max-width: 680px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}

/* MÓVIL */
@media (max-width: 860px) {

  body.tcg-has-guided-landing {
    padding-top: 142px !important;
    background: #f9fafc !important;
  }

  /* Primera fila blanca: volver */
  body.tcg-has-guided-landing .tcg-landing-back {
    position: fixed !important;
    top: var(--tcg-guided-top) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99998 !important;
    height: 66px !important;
    margin: 0 !important;
    padding: 12px 16px !important;
    background: #ffffff !important;
    border: 0 !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  body.tcg-has-guided-landing .tcg-landing-back a {
    min-height: 38px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    border: 1px solid #d8e6f7 !important;
    color: #087bff !important;
    font-size: 12.5px !important;
    font-weight: 650 !important;
    line-height: 1 !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.035) !important;
    text-decoration: none !important;
  }

  /* Segunda fila blanca: pasos + título */
  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-progress-row {
    position: fixed !important;
    top: calc(var(--tcg-guided-top) + 66px) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99997 !important;
    height: 76px !important;
    min-height: 76px !important;
    margin: 0 !important;
    padding: 10px 16px !important;
    background: #ffffff !important;
    border: 0 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #d8e6f7 !important;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.045) !important;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    align-items: center !important;
    column-gap: 18px !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-progress-row::before {
    display: none !important;
    content: none !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-progress {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin: 0 !important;
    width: auto !important;
    flex: 0 0 auto !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-progress span {
    width: 33px !important;
    height: 33px !important;
    min-width: 33px !important;
    font-size: 13px !important;
    font-weight: 650 !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy {
    display: block !important;
    min-width: 0 !important;
    max-width: none !important;
    width: 100% !important;
    flex: 1 1 auto !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy strong {
    display: block !important;
    color: #071229 !important;
    font-size: 15.4px !important;
    line-height: 1.13 !important;
    font-weight: 670 !important;
    letter-spacing: -0.025em !important;
    max-width: none !important;
    margin: 0 0 3px !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy span {
    display: block !important;
    color: #64748b !important;
    font-size: 12.2px !important;
    line-height: 1.25 !important;
    font-weight: 430 !important;
    max-width: none !important;
    margin: 0 !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-wizard__card {
    margin-top: 0 !important;
  }
}

/* Móviles muy angostos */
@media (max-width: 420px) {

  body.tcg-has-guided-landing {
    padding-top: 146px !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-progress-row {
    height: 80px !important;
    min-height: 80px !important;
    column-gap: 14px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-plan-progress span {
    width: 31px !important;
    height: 31px !important;
    min-width: 31px !important;
    font-size: 12px !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy strong {
    font-size: 14.5px !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy span {
    font-size: 11.4px !important;
  }
}

/* =========================================================
   Tudo Compra Guiada · Notebook subtítulo sin puntos suspensivos
   Permite que la frase use mejor el ancho disponible
========================================================= */

@media (min-width: 861px) {

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-progress-row {
    height: 94px !important;
    min-height: 94px !important;
  }

  body.tcg-has-guided-landing {
    padding-top: 110px !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy {
    max-width: 760px !important;
  }

  body.tcg-has-guided-landing .tcg-plan-wizard[data-tcg-mode="landing"] .tcg-stage-copy span {
    max-width: 760px !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
  }
}

/* ============================================================
   Tudo Compra Guiada · Plan Para Siempre centrado + beneficios
============================================================ */

.tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-step[data-tcg-stage="modality"] .tcg-options {
  grid-template-columns: minmax(280px, 520px) !important;
  justify-content: center !important;
  align-items: start !important;
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Caja de beneficios arriba de la tarjeta */
.tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-forever-benefits {
  width: 100% !important;
  max-width: 620px !important;
  margin: 0 auto 14px !important;
  padding: 18px 20px !important;
  border: 1px solid #d8e6f7 !important;
  border-radius: 20px !important;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%) !important;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.035) !important;
  text-align: left !important;
}

.tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-forever-benefits strong {
  display: block !important;
  margin: 0 0 10px !important;
  color: #071225 !important;
  font-size: 15.5px !important;
  line-height: 1.25 !important;
  font-weight: 680 !important;
  letter-spacing: -0.02em !important;
}

.tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-forever-benefits ul {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px 14px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-forever-benefits li {
  position: relative !important;
  margin: 0 !important;
  padding-left: 22px !important;
  color: #475569 !important;
  font-size: 13.2px !important;
  line-height: 1.35 !important;
  font-weight: 480 !important;
}

.tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-forever-benefits li::before {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: #007AFD !important;
  font-weight: 800 !important;
}

/* Tarjeta de pago único centrada */
.tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-option--modality {
  width: 100% !important;
  max-width: 520px !important;
  justify-self: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* En este plan, el valor único debe sentirse protagonista pero limpio */
.tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-option--modality .tcg-option__content > strong {
  font-size: 16px !important;
  font-weight: 640 !important;
}

.tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-option--modality .tcg-modality-price__main strong,
.tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-option--modality .tcg-modality-price__main .amount,
.tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-option--modality .tcg-modality-price__main bdi {
  font-size: 24px !important;
  font-weight: 660 !important;
}

/* Móvil */
@media (max-width: 768px) {
  .tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-step[data-tcg-stage="modality"] .tcg-options {
    grid-template-columns: 1fr !important;
    max-width: none !important;
  }

  .tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-forever-benefits {
    max-width: none !important;
    padding: 16px !important;
    border-radius: 18px !important;
  }

  .tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-forever-benefits ul {
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }

  .tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-forever-benefits li {
    font-size: 12.8px !important;
  }

  .tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-option--modality {
    max-width: none !important;
  }
}

/* ============================================================
   Tudo Compra Guiada · Título del plan sobre modalidades
============================================================ */

.tcg-modality-plan-heading {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  text-align: center !important;
  margin: 0 0 18px !important;
}

.tcg-modality-plan-heading span {
  display: block !important;
  margin: 0 0 4px !important;
  color: #64748b !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.tcg-modality-plan-heading strong {
  display: block !important;
  color: #071225 !important;
  font-size: 24px !important;
  line-height: 1.15 !important;
  font-weight: 520 !important;
  letter-spacing: -0.035em !important;
}

/* Beneficios Plan Para Siempre */
.tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-forever-benefits {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: 620px !important;
  margin: 0 auto 18px !important;
  padding: 18px 20px !important;
  border: 1px solid #d8e6f7 !important;
  border-radius: 20px !important;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%) !important;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.035) !important;
  text-align: left !important;
}

.tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-forever-benefits strong {
  display: block !important;
  margin: 0 0 10px !important;
  color: #071225 !important;
  font-size: 15.5px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
}

.tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-forever-benefits ul {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px 14px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-forever-benefits li {
  position: relative !important;
  margin: 0 !important;
  padding-left: 22px !important;
  color: #475569 !important;
  font-size: 13.2px !important;
  line-height: 1.35 !important;
  font-weight: 480 !important;
}

.tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-forever-benefits li::before {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: #007AFD !important;
  font-weight: 800 !important;
}

/* Centrar tarjeta única del Plan Para Siempre */
.tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-step[data-tcg-stage="modality"] .tcg-options {
  grid-template-columns: minmax(280px, 560px) !important;
  justify-content: center !important;
  max-width: 760px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-option--modality {
  width: 100% !important;
  max-width: 560px !important;
  justify-self: center !important;
}

.tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-modality-price__total {
  display: none !important;
}

/* Móvil */
@media (max-width: 768px) {
  .tcg-modality-plan-heading {
    margin-bottom: 14px !important;
  }

  .tcg-modality-plan-heading strong {
    font-size: 21px !important;
  }

  .tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-step[data-tcg-stage="modality"] .tcg-options {
    grid-template-columns: 1fr !important;
    max-width: none !important;
  }

  .tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-forever-benefits {
    max-width: none !important;
    padding: 16px !important;
    border-radius: 18px !important;
  }

  .tcg-plan-wizard[data-tcg-plan="parasiempre"] .tcg-forever-benefits ul {
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }
}

/* Etiqueta modalidad recomendada */
.tcg-option--modality {
  position: relative !important;
}

.tcg-option__badge {
  position: absolute !important;
  top: 14px !important;
  right: 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 24px !important;
  padding: 0 10px !important;
  border-radius: 999px !important;
  background: #eaf3ff !important;
  color: #007AFD !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
}

.tcg-option--recommended {
  border-color: rgba(0, 122, 253, 0.42) !important;
}

@media (max-width: 560px) {
  .tcg-option__badge {
    top: 10px !important;
    right: 12px !important;
    font-size: 10.5px !important;
    min-height: 22px !important;
    padding: 0 9px !important;
  }
}