h1, h2, h3, h4, h5, h6, .banda, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: "Kanit", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

:root {
    --bs-danger: #e10600;
    --bs-danger-rgb: 225, 6, 0;
}

.btn-danger {
    --bs-btn-color: #fff;
    --bs-btn-bg: #e10600;
    --bs-btn-border-color: #e10600;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #b90500;
    --bs-btn-hover-border-color: #b90500;
    --bs-btn-focus-shadow-rgb: 225, 6, 0;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #9f0400;
    --bs-btn-active-border-color: #9f0400;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #e10600;
    --bs-btn-disabled-border-color: #e10600;
}

.text-danger {
    color: #e10600 !important;
}

.bg-danger {
    background-color: #e10600 !important;
}

.border-danger {
    border-color: #e10600 !important;
}

.text-bg-danger {
    color: #fff !important;
    background-color: #e10600 !important;
}

.banda {
    line-height: 1.2;
}

.card {
    border-color: var(--bs-secondary) !important;
}

.card.bg-black,
.card.bg-dark {
    color: var(--bs-light);
}

.card-body {
    padding: 1.5rem;
}

.card p {
    color: inherit;
}

main .btn,
.navbar .btn-danger {
    border-radius: var(--bs-border-radius-pill);
}

.od-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.84) 45%,
            rgba(0, 0, 0, 0.48) 100%
        ),
        url("../imagenes/software.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.od-ruta-bg {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.86) 0%,
            rgba(0, 0, 0, 0.76) 45%,
            rgba(0, 0, 0, 0.56) 90%
        ),
        url("../imagenes/design.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.od-hero .container,
.od-ruta-bg .container {
    position: relative;
    z-index: 2;
}

.od-video-section {
    position: relative;
    overflow: hidden;
}

.od-video-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgb(100 73 73 / 95%) 0%, rgb(90 84 84 / 82%) 45%, rgb(0 0 0 / 68%) 100%)
}

.od-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.od-video-section .container {
    position: relative;
    z-index: 2;
}

.od-cronos-video::before {
    background:
        linear-gradient(90deg, rgb(52 41 41 / 96%) 0%, rgb(82 88 98 / 86%) 45%, rgb(139 98 98 / 72%) 100%)
}



/* =========================================================
   Ajustes SOLO para laptops
   Pantallas tipo 1366x768 / 1440x900
   ========================================================= */
@media (min-width: 992px) and (max-width: 1440px) and (max-height: 900px) {

    /* Header principal */
    .navbar-brand img {
        width: 95px;
    }

    .navbar .nav-link {
        font-size: 0.72rem;
    }

    .navbar .btn-sm {
        font-size: 0.72rem;
        padding: 0.35rem 0.85rem;
    }

    /* Navegación secundaria */
    header .nav-pills {
        gap: 0.35rem !important;
    }

    header .nav-pills .nav-link {
        font-size: 0.78rem;
        padding: 0.4rem 0.75rem;
    }

    /* Espaciados verticales generales */
    main section.py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    main section.py-5 > .container.py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    /* Títulos grandes */
    .display-1 {
        font-size: 4.25rem;
        line-height: 0.95;
    }

    .display-2 {
        font-size: 3.75rem;
        line-height: 0.95;
    }

    .display-3 {
        font-size: 3.1rem;
        line-height: 1;
    }

    .display-4 {
        font-size: 2.65rem;
        line-height: 1.05;
    }

    /* Textos destacados */
    .lead {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .fs-5 {
        font-size: 1.05rem !important;
        line-height: 1.5;
    }

    /* Cards de apoyo */
    .card-body {
        padding: 1.5rem;
    }
}