.contenedor_pruebas {
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* padding-top: 80px; */
    padding-bottom: 40px;
}

.table-ventajas {
    min-width: 900px;
}

.table-ventajas td,
.table-ventajas th {
    vertical-align: middle;
    padding: 1rem;
}

.contenedor_pruebas_comparacion {
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 80px;
}

section {
    scroll-margin-top: 80px;
}

.card-graficas {
    border: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.control-group {
    margin-bottom: 15px;
}

.contenedor-chart {
    position: relative;
    width: 100%;
    height: 600px;
}

.h-85 {
    height: 85% !important;
}

.fit-item {
    height: 85% !important;
}


.contenedor-carousel-muestras {
    position: relative;
    width: 100%;
    height: 600px;
}

@media (max-width: 991.98px) {

    .contenedor-chart {
        height: 500px;
    }

    .contenedor-carousel-muestras {
        height: 500px;
    }


}

@media (max-width: 767.98px) {

    .contenedor_pruebas {
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .contenedor-chart {
        height: 300px;
    }

    .card-graficas {
        padding: 1rem !important;
    }

    .hero-title {
        width: 100% !important;
    }

    .fit-item {
        height: 50% !important;
    }

}

/* Dimensionamiento dinámico de la chart/gráfica */
@media (max-width: 1024px) {
    .contenedor-chart {
        position: relative;
        height: 60vh;
        width: 41vw;
    }
}

@media (max-width: 767.98px) {
    .contenedor-chart {
        /* position: relative; */
        height: 40vh;
        width: 80vw;

    }

    .mobile-limit-height {
        max-height: 40svh;
        overflow-y: auto;
    }

    .mobile-limit-height-table {
        max-height: 60svh;
        overflow-y: auto;
    }
}

.animated-gradient {
    /* Define your gradient with multiple colors */
    background: linear-gradient(-45deg, var(--color-bg), #131010, var(--color-bg), #131010);

    /* Make the background 4x larger than the element */
    background-size: 400% 400%;

    /* Apply the animation loop */
    animation: gradientMovement 10s ease infinite;

    /* Ensure the element has visible height/width */
    min-height: 100vh;
    height: auto;
    width: 100%;
}

/* Define the movement path for the gradient background */
@keyframes gradientMovement {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.line-jump {
    border: 0;
    height: 4px;
    background-image: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    opacity: 1;
    /* background-image: linear-gradient(to right, #ff7e5f, #feb47b); */
}

.line-jump-reverse {
    border: 0;
    height: 4px;
    background-image: linear-gradient(270deg, var(--color-primary) 0%, var(--color-accent) 100%);
    opacity: 1;
    /* background-image: linear-gradient(to right, #ff7e5f, #feb47b); */
}

.text-description {
    color: var(--color-text-muted);
    /* text-align: justify; */
    /* margin-bottom: 2rem; */
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.text-table-highlight {
    /* color: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%) !important; */
    background-image: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%) !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* font-weight: bold; */

}

.text-table-faint {
    color: var(--color-text-muted) !important;

}

/* .navbar-float {
    width: auto;
    display: inline-flex;
    right: 1rem;
    left: auto;
} */

.navbar {
    width: fit-content;
    max-width: calc(100vw - 2rem);
}

@media (max-width: 991.98px) {

    .navbar {
        overflow: visible;
    }

    .navbar-collapse-horizontal {

        position: absolute;

        top: 100%;
        right: 0;

        width: 0;

        overflow: hidden;

        transition: width .35s ease;

        background: rgba(20, 20, 20, .95);

        border-radius: 20px;

        backdrop-filter: blur(15px);

        margin-top: 10px;

    }

    .navbar-collapse-horizontal.show {

        width: 320px;

        padding: 20px;

    }

    .navbar-collapse-horizontal .nav-links {

        flex-direction: column;

        gap: 1rem;

    }

}

/* d-flex justify-content-center align-items-center */