:root {
    --bt-primary: #ff00c8;
    --bt-primary-dark: #b70072;
    --bt-navy: #1c1c2e;
    --bt-purple: #2d1f4e;
    --bt-soft: #f8f5ff;
    --bt-soft-2: #fff3fb;
    --bt-text: #1a1a2e;
    --bt-muted: #626174;
    --bt-border: rgba(28, 28, 46, 0.12);
}

#logistica-body {
    background: #fff;
}

.logistica-page {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--bt-text);
    overflow-x: hidden;
    background: #fff;
}

.logistica-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ================================
   HERO LOGÍSTICA
================================ */

.logistica-hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #fbf7ff 52%, #ffffff 100%);
}

.logistica-pattern {
    position: absolute;
    inset: 0;
    opacity: 1;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 12% 15%, rgba(255, 0, 200, 0.16), transparent 32%),
        radial-gradient(circle at 85% 18%, rgba(112, 0, 255, 0.14), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(255, 0, 200, 0.08), transparent 34%);
}

.logistica-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 60px;
    align-items: center;
}

.logistica-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.logistica-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.9rem);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin: 0;
    color: var(--bt-navy);
}

.logistica-title span {
    color: var(--bt-primary-dark);
}

.logistica-description {
    max-width: 680px;
    color: var(--bt-muted);
    font-size: 1.12rem;
    line-height: 1.8;
    margin: 0;
}

.logistica-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.logistica-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 16px;
    padding: 14px 24px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    line-height: 1;
}

.logistica-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.logistica-btn-primary {
    background: linear-gradient(135deg, var(--bt-primary), var(--bt-primary-dark));
    color: #fff;
    box-shadow: 0 18px 35px rgba(183, 0, 114, 0.22);
}

.logistica-btn-primary:hover {
    color: #fff;
    box-shadow: 0 22px 42px rgba(183, 0, 114, 0.32);
}

.logistica-btn-outline {
    background: rgba(255, 255, 255, 0.78);
    color: var(--bt-navy);
    border-color: var(--bt-border);
    box-shadow: 0 8px 22px rgba(28, 28, 46, 0.04);
}

.logistica-btn-outline:hover {
    background: var(--bt-navy);
    color: #fff;
}

/* AGENTE */
.logistica-agent-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    padding: 18px;
    max-width: 430px;
    box-shadow: 0 20px 45px rgba(28, 28, 46, 0.08);
    backdrop-filter: blur(10px);
}

.logistica-agent-avatar {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    position: relative;
    flex: 0 0 74px;
}

.logistica-agent-avatar img,
.logistica-agent-placeholder {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 10px 25px rgba(28, 28, 46, 0.16);
}

.logistica-agent-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bt-primary), var(--bt-purple));
    color: #fff;
}

.logistica-agent-placeholder span {
    font-size: 34px;
}

.logistica-agent-status {
    position: absolute;
    right: 2px;
    bottom: 4px;
    width: 18px;
    height: 18px;
    background: #22c55e;
    border: 3px solid #fff;
    border-radius: 999px;
}

.logistica-agent-title {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--bt-muted);
}

.logistica-agent-name {
    margin: 2px 0;
    font-weight: 900;
    color: var(--bt-primary-dark);
}

.logistica-agent-text {
    margin: 0;
    color: var(--bt-muted);
    font-size: 0.86rem;
}

/* IMAGEN DERECHA */
.logistica-hero-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logistica-hero-image-card {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 560px;
    border-radius: 42px;
    overflow: hidden;
    border: 2px solid #fff;
    background: linear-gradient(135deg, #ffffff, var(--bt-soft));
    box-shadow: 0 35px 80px rgba(28, 28, 46, 0.22);
}

.logistica-hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.logistica-hero-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(28, 28, 46, 0.02), rgba(28, 28, 46, 0.16)),
        radial-gradient(circle at 20% 20%, rgba(255, 0, 200, 0.14), transparent 35%);
    pointer-events: none;
}

.logistica-floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 22px;
    padding: 16px 18px;
    box-shadow: 0 25px 55px rgba(28, 28, 46, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.logistica-floating-card-one {
    top: 42px;
    left: -34px;
}

.logistica-floating-card-two {
    right: -28px;
    bottom: 72px;
}

.logistica-floating-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--bt-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logistica-floating-icon.secondary {
    background: var(--bt-purple);
}

.logistica-floating-card strong,
.logistica-floating-card small {
    display: block;
}

.logistica-floating-card strong {
    color: var(--bt-navy);
    font-weight: 900;
}

.logistica-floating-card small {
    color: var(--bt-muted);
}

/* ================================
   RESPONSIVE HERO
================================ */

@media (max-width: 1024px) {
    .logistica-hero {
        min-height: auto;
        padding: 70px 0 60px;
    }

    .logistica-hero-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .logistica-hero-copy {
        text-align: center;
        align-items: center;
    }

    .logistica-title {
        max-width: 850px;
        font-size: clamp(2.4rem, 8vw, 4.2rem);
        line-height: 1.06;
        letter-spacing: -0.04em;
    }

    .logistica-description {
        max-width: 720px;
        margin: 0 auto;
    }

    .logistica-actions {
        justify-content: center;
    }

    .logistica-agent-card {
        text-align: left;
    }

    .logistica-hero-visual {
        width: min(680px, 100%);
        margin: 0 auto;
        min-height: 460px;
    }

    .logistica-hero-image-card {
        height: 460px;
        border-radius: 34px;
    }

    .logistica-floating-card-one {
        left: 20px;
        top: 24px;
    }

    .logistica-floating-card-two {
        right: 20px;
        bottom: 34px;
    }
}

@media (max-width: 768px) {
    .logistica-hero {
        padding: 52px 0 48px;
    }

    .logistica-hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .logistica-hero-copy {
        text-align: center;
        align-items: center;
    }

    .logistica-title {
        text-align: center;
        font-size: clamp(2.2rem, 12vw, 3.15rem);
        line-height: 1.08;
        letter-spacing: -0.045em;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .logistica-description {
        text-align: center;
        font-size: 1rem;
        line-height: 1.65;
        max-width: 94%;
        margin-left: auto;
        margin-right: auto;
    }

    .logistica-actions {
        width: 100%;
    }

    .logistica-btn {
        width: 100%;
        padding: 14px 18px;
        border-radius: 14px;
    }

    .logistica-agent-card {
        width: 100%;
        max-width: 100%;
        border-radius: 20px;
        padding: 14px;
    }

    .logistica-agent-avatar,
    .logistica-agent-avatar img,
    .logistica-agent-placeholder {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
    }

    /*
     IMPORTANTE:
     display:none elimina la imagen y elimina también el espacio.
     opacity:0 no sirve porque deja el espacio ocupado.
    */
    .logistica-hero-visual {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
}

@media (max-width: 480px) {
    .logistica-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .logistica-title {
        font-size: clamp(2rem, 12vw, 2.8rem);
        line-height: 1.09;
    }

    .logistica-description {
        font-size: 0.96rem;
    }
}
/* Ocultar columna derecha de Storage en móvil */
@media (max-width: 1023px) {
    .logistica-storage-cards-mobile-hide {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
}


/* =========================================================
   PROMO B2B FULL WIDTH
   ========================================================= */

.logistica-promo-section-v2 {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 96px 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(249, 20, 198, 0.18), transparent 35%),
        radial-gradient(circle at 88% 75%, rgba(112, 0, 255, 0.28), transparent 42%),
        linear-gradient(135deg, #070914 0%, #101323 42%, #28115f 100%);
}

.logistica-promo-bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
    background-size: 42px 42px;
}

.logistica-promo-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(90px);
    pointer-events: none;
}

.logistica-promo-glow-one {
    width: 420px;
    height: 420px;
    left: -160px;
    top: -120px;
    background: rgba(249, 20, 198, 0.22);
}

.logistica-promo-glow-two {
    width: 520px;
    height: 520px;
    right: -180px;
    bottom: -180px;
    background: rgba(112, 0, 255, 0.34);
}

.logistica-promo-container-v2 {
    position: relative;
    z-index: 2;
    width: min(100% - 40px, 1280px);
    margin: 0 auto;
}

.logistica-promo-grid-v2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
    gap: 72px;
    align-items: center;
}

.logistica-promo-copy-v2 {
    color: #ffffff;
}

.logistica-promo-badge-v2 {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.logistica-promo-title-v2 {
    margin: 28px 0 0;
    color: #ffffff;
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    line-height: 0.96;
    font-weight: 950;
    letter-spacing: -0.055em;
}

.logistica-promo-subtitle-v2 {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.3rem, 2.4vw, 2rem);
    line-height: 1.12;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.logistica-promo-description-v2 {
    max-width: 620px;
    margin-top: 26px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 500;
}

.logistica-promo-description-v2 strong {
    color: #ffffff;
    font-weight: 900;
}

.logistica-promo-stats-v2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
    max-width: 640px;
}

.logistica-promo-stat-card-v2 {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.logistica-promo-stat-card-v2:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(249, 20, 198, 0.34);
}

.logistica-promo-stat-icon-v2 {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, #f914c6 0%, #ff57dc 100%);
    box-shadow: 0 18px 34px rgba(249, 20, 198, 0.28);
}

.logistica-promo-stat-icon-v2.secondary {
    background: linear-gradient(135deg, #7000ff 0%, #9b5cff 100%);
    box-shadow: 0 18px 34px rgba(112, 0, 255, 0.30);
}

.logistica-promo-stat-icon-v2 .material-symbols-outlined {
    font-size: 24px;
}

.logistica-promo-stat-card-v2 strong {
    display: block;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.2;
}

.logistica-promo-stat-card-v2 span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
    line-height: 1.45;
}

.logistica-promo-btn-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
    padding: 16px 34px;
    border-radius: 16px;
    background: #ffffff;
    color: #111827;
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.logistica-promo-btn-v2:hover {
    transform: translateY(-4px);
    background: #ffe7fa;
    color: #111827;
    box-shadow: 0 30px 80px rgba(249, 20, 198, 0.22);
}

.logistica-promo-btn-v2 .material-symbols-outlined {
    font-size: 20px;
}

.logistica-promo-note-v2 {
    display: block;
    max-width: 620px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.78rem;
    line-height: 1.6;
}

.logistica-promo-visual-col-v2 {
    position: relative;
    display: block;
}

.logistica-promo-visual-card-v2 {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border-radius: 32px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    box-shadow: 0 36px 120px rgba(0, 0, 0, 0.28);
}

.logistica-promo-image-v2 {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
}

.logistica-promo-illustration-v2 {
    position: relative;
    min-height: 500px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 48px;
    background:
        radial-gradient(circle at center, rgba(249, 20, 198, 0.18), transparent 44%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.logistica-promo-illustration-grid-v2 {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.55) 1px, transparent 1px);
    background-size: 36px 36px;
}

.logistica-promo-illustration-icon-v2 {
    position: relative;
    z-index: 2;
    width: 116px;
    height: 116px;
    border-radius: 30px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, #f914c6 0%, #7000ff 100%);
    box-shadow: 0 28px 70px rgba(249, 20, 198, 0.28);
}

.logistica-promo-illustration-icon-v2 .material-symbols-outlined {
    font-size: 66px;
}

.logistica-promo-illustration-v2 strong {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 28px;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.logistica-promo-illustration-v2 p {
    position: relative;
    z-index: 2;
    max-width: 360px;
    margin: 14px auto 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    line-height: 1.6;
}

.logistica-promo-price-badge-v2 {
    position: absolute;
    top: 34px;
    right: 34px;
    padding: 14px 22px;
    border-radius: 18px;
    background: #ffffff;
    color: #111827;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.logistica-promo-price-badge-v2 span {
    display: block;
    color: #6b7280;
    font-size: 0.64rem;
    font-weight: 950;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.logistica-promo-price-badge-v2 strong {
    display: block;
    margin-top: 2px;
    color: #f914c6;
    font-size: 1.85rem;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.04em;
}

/* Mobile: ocultar la columna derecha completamente */
@media (max-width: 1023px) {
    .logistica-promo-section-v2 {
        padding: 72px 0;
    }

    .logistica-promo-container-v2 {
        width: min(100% - 32px, 760px);
    }

    .logistica-promo-grid-v2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .logistica-promo-copy-v2 {
        text-align: center;
    }

    .logistica-promo-badge-v2 {
        margin-left: auto;
        margin-right: auto;
    }

    .logistica-promo-description-v2,
    .logistica-promo-note-v2 {
        margin-left: auto;
        margin-right: auto;
    }

    .logistica-promo-stats-v2 {
        max-width: 100%;
    }

    .logistica-promo-visual-col-v2 {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
}

@media (max-width: 640px) {
    .logistica-promo-section-v2 {
        padding: 58px 0;
    }

    .logistica-promo-title-v2 {
        font-size: 2.45rem;
    }

    .logistica-promo-subtitle-v2 {
        font-size: 1.35rem;
    }

    .logistica-promo-stats-v2 {
        grid-template-columns: 1fr;
    }

    .logistica-promo-stat-card-v2 {
        padding: 20px;
    }

    .logistica-promo-btn-v2 {
        width: 100%;
    }
}


/* =========================================================
   PROMO STORAGE DOTS ANIMATION
   ========================================================= */

.logistica-promo-dots-v2 {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.logistica-promo-dot-v2 {
    position: absolute;
    left: 50%;
    top: 43%;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow:
        0 0 12px rgba(255, 255, 255, 0.75),
        0 0 28px rgba(249, 20, 198, 0.55);
    opacity: 0;
    animation-name: logisticaPromoDotToCenter;
    animation-duration: var(--duration, 4.8s);
    animation-timing-function: cubic-bezier(.45, 0, .25, 1);
    animation-iteration-count: infinite;
    animation-delay: var(--delay, 0s);
}

.logistica-promo-dot-v2::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    background: rgba(249, 20, 198, 0.16);
    filter: blur(8px);
}

.logistica-promo-dot-v2.dot-1 {
    --x-start: -210px;
    --y-start: -120px;
    --delay: 0s;
    --duration: 4.6s;
    background: #f914c6;
}

.logistica-promo-dot-v2.dot-2 {
    --x-start: 210px;
    --y-start: -110px;
    --delay: .7s;
    --duration: 5.2s;
    background: #ffffff;
}

.logistica-promo-dot-v2.dot-3 {
    --x-start: -235px;
    --y-start: 95px;
    --delay: 1.2s;
    --duration: 5s;
    background: #7000ff;
}

.logistica-promo-dot-v2.dot-4 {
    --x-start: 230px;
    --y-start: 105px;
    --delay: 1.8s;
    --duration: 4.8s;
    background: #f914c6;
}

.logistica-promo-dot-v2.dot-5 {
    --x-start: 0px;
    --y-start: -185px;
    --delay: 2.4s;
    --duration: 5.4s;
    background: #ffffff;
}

.logistica-promo-dot-v2.dot-6 {
    --x-start: 0px;
    --y-start: 175px;
    --delay: 3s;
    --duration: 5.1s;
    background: #7000ff;
}

@keyframes logisticaPromoDotToCenter {
    0% {
        transform: translate(var(--x-start), var(--y-start)) scale(0.65);
        opacity: 0;
    }

    12% {
        opacity: 0.95;
    }

    55% {
        opacity: 0.9;
    }

    82% {
        transform: translate(calc(var(--x-start) * 0.16), calc(var(--y-start) * 0.16)) scale(1);
        opacity: 0.85;
    }

    100% {
        transform: translate(-4px, -4px) scale(0.15);
        opacity: 0;
    }
}

/* En móvil no se muestran, porque la columna derecha también se oculta */
@media (max-width: 1023px) {
    .logistica-promo-dots-v2 {
        display: none !important;
        visibility: hidden !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logistica-promo-dot-v2 {
        animation: none !important;
        opacity: 0 !important;
    }
}

/* =========================================================
   CANADÁ - OCULTAR COLUMNA DERECHA EN MÓVIL
   ========================================================= */

@media (max-width: 1023px) {
    .logistica-canada-visual-mobile-hide {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        width: 0 !important;
        min-width: 0 !important;
        max-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }
}

/* =========================================================
   CANADÁ - OCULTAR COLUMNA DERECHA EN MÓVIL
   ========================================================= */

@media (max-width: 1023px) {
    .logistica-canada-visual-mobile-hide {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        width: 0 !important;
        min-width: 0 !important;
        max-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        pointer-events: none !important;
    }
}
