/* SICAR Clone - Custom Styles */
:root {
    --primary-color: #006FB1;
    --primary-dark: #006d87;
    --primary-light: #4bbac8;
    --secondary-color: #83BA04;
    --text-dark: #333333;
    --text-gray: #666666;
    --text-light: #999999;
    --bg-light: #f9f9f9;
    --bg-gray: #eaeaea;
    --white: #ffffff;
    --warning-color: #ff9800;
    --rojo-color: #ff0000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background-color: var(--white);
    padding: 0;
    border-bottom: 1px solid var(--bg-gray);
}

.top-bar .navbar-brand {
    padding: 0;
    margin-right: 30px;
    flex-shrink: 0;
}

.top-bar .navbar-collapse {
    flex-direction: row;
    align-items: center;
}

.top-bar .navbar-nav {
    display: flex;
    gap: 0;
    margin-right: auto;
}

.top-bar .nav-item {
    display: inline-flex;
}

.top-bar .nav-link.top-link {
    padding: 20px 18px !important;
    color: var(--text-gray) !important;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.top-bar .nav-link.top-link:hover {
    background-color: rgba(0, 111, 176, 0.05);
    color: var(--primary-color) !important;
    border-bottom-color: var(--primary-color);
}

.top-bar .nav-link.top-link i {
    margin-right: 6px;
}

.top-bar .top-links {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-left: 20px;
}

.logo {
    height: 75px;
    object-fit: contain;
}

.logo-svg {
    height: 50px;
    width: auto;
}

.logo-link {
    display: inline-block;
}

/* Toggle Button */
.top-bar .navbar-toggler {
    border: 1px solid var(--secondary-color);
    padding: 8px 12px;
    margin-left: auto;
}

.top-bar .navbar-toggler:focus {
    box-shadow: none;
    border-color: var(--secondary-color);
}

.top-bar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28%30%2c%30%2c%30%2c1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Menu */
@media (max-width: 991.98px) {
    .top-bar .navbar-collapse {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 15px;
        border-top: 1px solid var(--bg-gray);
        padding-top: 15px;
    }

    .top-bar .navbar-nav {
        width: 100%;
        flex-direction: column;
        margin-right: 0;
    }

    .top-bar .nav-item {
        display: block;
        width: 100%;
    }

    .top-bar .nav-link.top-link {
        padding: 12px 0 !important;
        border-bottom: none;
        border-left: 3px solid transparent;
        padding-left: 15px !important;
    }

    .top-bar .nav-link.top-link:hover {
        background-color: transparent;
        border-bottom-color: transparent;
        border-left-color: var(--primary-color);
    }

    .top-bar .top-links {
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-left: 0;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--bg-gray);
    }

    .top-bar .top-link {
        padding: 8px 0 !important;
    }
}

/* Secondary Bar */
.secondary-bar {
    background-color: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-gray);
}

.brand-text {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 16px;
}

.contact-btns {
    gap: 15px;
    align-items: center;
}

.contact-phone {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
}

.contact-phone:hover {
    color: var(--primary-color);
}

.btn-chat {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-chat:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,111,176, 0.6), rgba(0,111,176, 0.6)),
                url('img/extractores-tipo-cebolla.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
    min-height: 600px;
}

.hero-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hero-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
}

.hero-text strong {
    color: var(--white);
}

/* Hero Form */
.hero-form-card {
    background-color: rgba(0, 0, 0, 0.45);
    padding: 35px;
    border-radius: 8px;
    color: var(--white);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.form-description {
    font-size: 14px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-form-card .form-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-form-card .form-control,
.hero-form-card .form-select {
    border: none;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 14px;
    background-color: var(--white);
}

.hero-form-card .form-control::placeholder {
    color: var(--text-light);
}

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #5a8318;
    color: var(--white);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--white);
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

.whatsapp-float i {
    font-size: 20px;
}

/* Fixed WhatsApp Button */
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* Features Section */
.features-section {
    padding: 0;
    background-color: var(--white);
}

/* Clients Carousel */
.clients-section {
    padding: 35px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--bg-gray);
    border-bottom: 1px solid var(--bg-gray);
    width: 100%;
}

.clients-container {
    padding-left: clamp(12px, 3vw, 48px);
    padding-right: clamp(12px, 3vw, 48px);
}

.clients-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-dark);
    margin: 0 0 18px;
    text-align: center;
}

.clients-owl {
    padding: 8px 0 2px;
}

.clients-owl .item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Centrado vertical del carrusel */
.clients-owl .owl-stage {
    display: flex;
    align-items: center;
}

/* Evita saltos raros en algunos layouts */
.clients-owl .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo {
    flex: 0 0 auto;
    height: clamp(95px, 12.6vw, 146px);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(0);
    opacity: 1;
    transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.client-logo img {
    max-height: clamp(95px, 12.6vw, 146px);
    max-width: clamp(273px, 47.6vw, 437px);
    width: auto;
    height: auto;
    object-fit: contain;
}

.client-logo:hover {
    filter: grayscale(1);
    opacity: 0.85;
    transform: translateY(-1px);
}

.clients-empty {
    padding: 6px 0 10px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-right: 1px solid var(--bg-gray);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    background-color: var(--bg-light);
}

.col-lg-3:last-child .feature-card {
    border-right: none;
}

.feature-icon-wrapper {
    margin-bottom: 15px;
}

.feature-icon-wrapper img {
    max-width: 120px;
    height: auto;
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0088a9 0%, #006d87 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-icon-box i {
    font-size: 36px;
    color: #ffffff;
}

.feature-card:hover .feature-icon-box {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 136, 169, 0.3);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.feature-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Help Section */
.help-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 400;
    text-transform: capitalize;
}

.section-title strong {
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.section-highlight {
    font-size: 18px;
    color: var(--text-dark);
}

/* Video Cards */
.video-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: color 0.3s ease;
}

.play-button:hover {
    color: var(--primary-color);
}

.video-title {
    font-size: 20px;
    color: var(--text-dark);
    margin: 20px 0 10px;
    font-weight: 400;
}

.video-title strong {
    font-weight: 700;
}

.video-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Experience Section */
.experience-section {
    padding: 100px 0;
    background: linear-gradient(to right, #f5f5f5 40%, #e8e8e8 100%);
}

.experience-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.experience-text {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.experience-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-acquire {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-acquire:hover {
    background-color: #5a8318;
    color: var(--white);
}

.btn-acquire2 {
    background-color: var(--rojo-color);
    color: var(--white);
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-acquire2:hover {
    background-color: var(--rojo-color);
    color: var(--white);
}

.btn-facebook {
    background-color: #3b5998;
    color: var(--white);
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-facebook:hover {
    background-color: #2d4373;
    color: var(--white);
}

.laptop-image {
    text-align: right;
}

.laptop-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.accordion-item {
    border: 1px solid var(--bg-gray);
    border-radius: 0 !important;
    margin-bottom: 10px;
}

.accordion-button {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 400;
    padding: 18px 20px;
    background-color: var(--white);
}

.accordion-button:not(.collapsed) {
    background-color: var(--bg-light);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--bg-gray);
}

.accordion-button::after {
    display: none;
}

.accordion-body {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    padding: 15px 20px 20px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.btn-info-video {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-info-video:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.pricing-card {
    background-color: var(--white);
    border: 1px solid var(--bg-gray);
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.pricing-icon {
    margin-bottom: 20px;
}

.pricing-icon img {
    max-width: 100px;
    height: auto;
}

.pricing-icon-box {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.pricing-icon-box i {
    font-size: 42px;
}

.pricing-icon-box.servidor {
    background: linear-gradient(135deg, #e8f4f8 0%, #d0e8f0 100%);
}

.pricing-icon-box.servidor i {
    color: #0088a9;
}

.pricing-icon-box.terminal {
    background: linear-gradient(135deg, #f0e8f4 0%, #e0d0e8 100%);
}

.pricing-icon-box.terminal i {
    color: #8b5a9a;
}

.pricing-icon-box.nube {
    background: linear-gradient(135deg, #e8f8f0 0%, #d0f0e0 100%);
}

.pricing-icon-box.nube i {
    color: #4aa366;
}

.pricing-card:hover .pricing-icon-box {
    transform: scale(1.1);
}

.pricing-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-description {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.pricing-link {
    color: var(--primary-color);
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}

.pricing-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.pricing-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cart {
    background-color: var(--bg-gray);
    color: var(--text-gray);
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cart:hover {
    background-color: #ddd;
    color: var(--text-dark);
}

.btn-buy {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-buy:hover {
    background-color: #5a8318;
    color: var(--white);
}

.btn-video {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-video:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-more {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Footer */
.main-footer {
    background-color: #f5f5f5;
    padding: 50px 0 0;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--bg-gray);
    margin-bottom: 30px;
}

.footer-label {
    font-size: 14px;
    color: var(--text-gray);
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-btn {
    padding: 10px 15px;
    font-size: 13px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn.facebook {
    background-color: #3b5998;
    color: var(--white);
}

.social-btn.youtube {
    background-color: #e0e0e0;
    color: var(--text-dark);
}

.social-btn.instagram {
    background-color: #c13584;
    color: var(--white);
}

.social-btn.twitter {
    background-color: #1da1f2;
    color: var(--white);
}

.social-btn.linkedin {
    background-color: #0077b5;
    color: var(--white);
}

.social-btn:hover {
    opacity: 0.9;
    color: var(--white);
    transform: translateY(-2px);
}

.social-btn.youtube:hover {
    color: var(--text-dark);
}

.footer-links {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--bg-gray);
    margin-bottom: 30px;
}

.footer-links h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-links h5 i {
    margin-right: 5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    font-size: 13px;
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-contact {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--bg-gray);
    font-size: 14px;
    color: var(--text-gray);
}

.footer-contact a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 10px;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-legal {
    padding: 20px 0;
    border-bottom: 1px solid var(--bg-gray);
}

.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-legal ul li a {
    font-size: 13px;
    color: var(--primary-color);
    text-decoration: none;
}

.footer-legal ul li a:hover {
    text-decoration: underline;
}

.social-media-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 18px;
    color: #ffffff !important;
    text-decoration: none;
    transition: filter 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.facebook {
    background-color: #1877F2;
}

.social-link.tiktok {
    background-color: #000000;
}

.social-link:hover {
    filter: grayscale(100%);
    transform: scale(1.1);
    text-shadow: 0 0 5px rgba(255, 255, 255, 1), 0 0 10px rgba(255, 255, 255, 0.6);
}

.footer-copyright {
    text-align: center;
    padding: 25px 0;
    background-color: #f0f0f0;
}

.footer-copyright p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-section {
        padding: 60px 0;
    }

    .hero-form-card {
        margin-top: 40px;
    }

    .experience-section {
        padding: 60px 0;
    }

    .laptop-image {
        text-align: center;
        margin-top: 40px;
    }

    .feature-card {
        border-right: none;
        border-bottom: 1px solid var(--bg-gray);
    }

    .col-md-6:last-child .feature-card {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-section {
        padding: 40px 0;
        min-height: auto;
    }

    .section-title {
        font-size: 24px;
    }

    .experience-title {
        font-size: 28px;
    }

    .whatsapp-float {
        position: static;
        margin-top: 30px;
        display: inline-flex;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .social-buttons {
        justify-content: center;
    }

    .footer-links h5 {
        margin-top: 20px;
    }

    .footer-contact {
        flex-direction: column;
    }

    .footer-contact a {
        display: block;
        margin: 5px 0;
    }

    .social-media-links {
        justify-content: flex-start;
    }

    .social-link {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title,
.hero-subtitle,
.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-form-card {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
