.elementor-10052 .elementor-element.elementor-element-2d08680{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--background-transition:0.3s;}/* Start custom CSS for html, class: .elementor-element-2ff542b */.tabs-container {
    font-family: sans-serif;
    margin:0 auto;
    width:100%;
}

/* OCULTAR RADIOS (forzado) */
.tabs-container input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* TOGGLE */
.toggle-tabs {
    display: flex;
    background: #dcdcdc;
    border-radius: 50px;
    position: relative;
    width: 100%;
    max-width: 500px;
        margin: 0 auto;
}

/* BOTONES */
.toggle-tabs label {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    z-index: 2;
    transition: 0.3s;
    user-select: none;
}

/* SLIDER */
.slider {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(50% - 5px);
    height: calc(100% - 10px);
    background: #ffd600;
    border-radius: 50px;
    transition: all 0.3s ease;
    z-index: 1;
}

/* MOVER SLIDER */
#tab2:checked ~ .toggle-tabs .slider {
    left: calc(50%);
}

/* TEXTO ACTIVO */
#tab1:checked ~ .toggle-tabs label[for="tab1"],
#tab2:checked ~ .toggle-tabs label[for="tab2"] {
    color: #000;
}

/* CONTENIDO */
.tab-content {
    display: none;
    margin-top: 20px;
    padding: 20px;
    border-radius: 12px;
    background: #ffffff00;
}

/* MOSTRAR CONTENIDO */
#tab1:checked ~ .content #content1 {
    display: block;
}

#tab2:checked ~ .content #content2 {
    display: block;
}

@keyframes isp-tab-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.6); }
    50%  { box-shadow: 0 0 0 6px rgba(255, 107, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

.isp-plans-mobile-bar__tab.active {
    animation: isp-tab-pulse 1.8s ease-in-out infinite;
}
.isp-plans-mobile-bar {
    /* Estado inicial: oculta abajo */
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.isp-plans-mobile-bar.visible {
    /* Visible: sube a su posición normal */
    transform: translateY(0);
}
@media (max-width: 768px) {
    .tab-content {
        padding: 0;
    }
    .toggle-tabs label {
     padding: 0;

    align-content: center;
}
}/* End custom CSS */