/* Estilos para el componente tabsDataPane */

.nexods-tabsdatapane__title {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--nexo-color-secondary);
    max-width: var(--flow-container-max-width);
    margin: 0 auto;
    margin-bottom: 64px;
}
@media (max-width: 768px) {
    .nexods-tabsdatapane__title {
        font-size: 38px;
    }
}
.section-panel {
    max-width: var(--flow-container-max-width);
    margin: 0 auto;
}

.section-panel .section-panel__tabs {
    /* Ocultar scrollbar pero mantener funcionalidad */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    border-bottom: solid 2px var(--nexo-color-primary);
    /* IE y Edge */
}

.section-panel .scroll-arrow {
    height: calc(100%) !important;
}

.section-panel .scroll-arrow svg {
    color: var(--color-primary);
    font-weight: 800;
}

.section-panel .section-panel__tabs::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari y Opera */
}

.section-panel .tabs-content {
    border-color: var(--color-primary);
    margin-top: 0;
}

/* Animaciones suaves para las transiciones */
.section-panel .tabs-data-pane button {
    transition: all 0.2s ease-in-out;
}

/* Efecto hover para pestañas inactivas */
.section-panel .tabs-data-pane button:not(.tab-active):hover {
    background-color: rgba(5, 118, 229, 0.1);
    /* --color-primary con opacidad */
}

/* Estilos para las flechas de navegación */
.section-panel .scroll-arrow {
    transition: all 0.2s ease-in-out;
    backdrop-filter: blur(4px);
}

.section-panel .scroll-arrow:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.section-panel .scroll-arrow svg {
    transition: transform 0.2s ease-in-out;
}

.section-panel .scroll-arrow:hover svg {
    transform: scale(1.1);
}

/* Estilos para el contenedor de iframe */
.section-panel .iframe-container {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Clase utilitaria para ocultar scrollbar */
.scrollbar-hide {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .section-panel .tabs-data-pane .flex {
        flex-wrap: nowrap;
        scrollbar-width: thin;
    }

    /* En móviles, hacer las flechas un poco más grandes */
    .section-panel .scroll-arrow {
        width: 2.5rem;
    }
}



.section-panel .tab-button:hover {
    cursor: pointer;
}

/* loader */
.tab-loader {
    color: var(--nexo-color-primary);
    font-size: 45px;
    text-indent: -9999em;
    overflow: hidden;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    transform: translateZ(0);
    animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
}

@keyframes mltShdSpin {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em,
            0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
            0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em,
            0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
            0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em,
            -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em,
            -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }

    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
            -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em,
            -0.749em -0.34em 0 -0.477em;
    }

    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
            -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em,
            -0.82em -0.09em 0 -0.477em;
    }

    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em,
            0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}

@keyframes round {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}