:root {
    --primary-color: #4636ff;
    --primary-dark: #3b36d8;
    --primary-soft: #eef0ff;
    --accent-color: #ff7a59;
    --accent-hover: #ff6843;
    --text-dark: #111827;
    --text-muted: #5b6475;
    --white: #ffffff;
    --border-soft: rgba(70, 54, 255, 0.10);
    --shadow-soft: 0 18px 50px rgba(31, 38, 135, 0.08);
    --shadow-hover: 0 22px 55px rgba(31, 38, 135, 0.14);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: #ffffff;
}

h1, h2, h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

img {
    max-width: 100%;
}

.navbar-logo {
    max-width: 220px;
    height: auto;
}

.mr-1 {
    margin-right: 4px;
}

/* HEADER */
.module-header {
    background: linear-gradient(135deg, #3b36d8 0%, #4636ff 55%, #5b46ff 100%);
    color: #ffffff;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.module-navbar {
    padding: 24px 0;
}

.module-navbar .nav-link {
    color: rgba(255, 255, 255, 0.86);
    font-weight: 600;
    transition: 0.3s ease;
}

.module-navbar .nav-link:hover {
    color: #ff7a59;
}

.btn-nav-demo {
    background: #ff7a59;
    color: #fff;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 700;
    border: none;
    text-decoration: none;
}

.btn-nav-demo:hover {
    background: #ff6843;
    color: #fff;
}

.module-hero {
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

.back-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 18px;
}

.back-link:hover {
    color: #ffffff;
}

.module-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.module-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0;
}

.module-description {
    font-size: 1.08rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.90);
    max-width: 620px;
}

.module-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-primary-module {
    display: inline-block;
    background: #ff7a59;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary-module:hover {
    background: #ff6843;
    color: #ffffff;
}

.btn-outline-module {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-outline-module:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.module-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.module-badge {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.92rem;
}

.module-hero-card-wrapper {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-hero-card {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 680px;
    background: rgba(255, 255, 255, 0.10);
    padding: 16px;
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(15, 15, 40, 0.22);
    animation: floatModuleHero 6s ease-in-out infinite;
    transition: transform 0.15s linear;
    overflow: hidden;
}

.module-hero-image {
    display: block;
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
}

@keyframes floatModuleHero {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}
/* HEADER */

/* GENERALES */
.section-heading {
    max-width: 820px;
}

.section-kicker {
    display: inline-block;
    background: rgba(70, 54, 255, 0.08);
    color: var(--primary-color);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 0;
}

.section-description {
    font-size: 1.04rem;
    line-height: 1.85;
    color: var(--text-muted);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
/* GENERALES */

/* RESUMEN */
.module-summary-section {
    padding: 90px 0 20px;
    background: #ffffff;
}

.summary-card {
    background: #ffffff;
    border: 1px solid rgba(70, 54, 255, 0.08);
    border-radius: 22px;
    padding: 28px 24px;
    box-shadow: var(--shadow-soft);
}

.summary-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(70, 54, 255, 0.10);
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 18px;
}

.summary-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.summary-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0;
}
/* RESUMEN */

/* CONTENIDO */
.module-content-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

.content-card {
    background: #ffffff;
    border: 1px solid rgba(70, 54, 255, 0.08);
    border-radius: 24px;
    padding: 28px 24px;
    box-shadow: var(--shadow-soft);
}

.content-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.feature-list {
    padding-left: 20px;
    margin: 0;
}

.feature-list li {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 10px;
}
/* CONTENIDO */

/* VIDEO */
.module-video-section {
    padding: 100px 0;
    background: #ffffff;
}

.video-card {
    background: #ffffff;
    border: 1px solid rgba(70, 54, 255, 0.08);
    border-radius: 28px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.module-video {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: #000000;
    display: block;
}
/* VIDEO */

/* FEATURES */
.module-features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(70, 54, 255, 0.08);
    border-radius: 22px;
    padding: 26px 22px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.feature-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0;
}
/* FEATURES */

/* CTA */
.module-cta-section {
    padding: 100px 0;
    background: #ffffff;
}

.cta-box {
    background: linear-gradient(135deg, #eef0ff 0%, #f8f9ff 100%);
    border: 1px solid rgba(70, 54, 255, 0.08);
    border-radius: 28px;
    padding: 48px 28px;
    box-shadow: var(--shadow-soft);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}
/* CTA */

/* FOOTER */
.module-footer {
    background: linear-gradient(135deg, #1f1b6b 0%, #2f2aa3 45%, #4636ff 100%);
    color: #ffffff;
    padding: 28px 0;
}

.footer-inner {
    text-align: center;
}

.footer-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}
/* FOOTER */

/* RESPONSIVE */
@media (max-width: 991.98px) {
    .module-title {
        font-size: 2.35rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .module-header {
        padding-bottom: 75px;
    }

    .module-navbar .navbar-collapse {
        margin-top: 14px;
        padding: 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.10);
        backdrop-filter: blur(10px);
    }

    .btn-nav-demo {
        display: inline-flex;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .module-header {
        padding-bottom: 60px;
    }

    .module-hero {
        text-align: center;
    }

    .module-title {
        font-size: 2rem;
    }

    .module-description {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .module-hero-actions,
    .module-badges,
    .cta-actions {
        justify-content: center;
    }

    .btn-primary-module,
    .btn-outline-module {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .module-summary-section,
    .module-content-section,
    .module-video-section,
    .module-features-section,
    .module-cta-section {
        padding: 75px 0;
    }

    .summary-card,
    .content-card,
    .feature-card,
    .cta-box {
        padding: 24px 18px;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .module-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.55rem;
    }

    .module-badge {
        font-size: 0.86rem;
        padding: 8px 12px;
    }

    .video-card {
        padding: 12px;
        border-radius: 22px;
    }

    .module-video {
        border-radius: 14px;
    }
}

/* NUEVO */
/* =========================================================
   TABLA DE CATEGORÍAS
========================================================= */
.module-categories-section {
    padding: 110px 0;
    background:
        radial-gradient(circle at top left, rgba(93, 211, 182, 0.10), transparent 28%),
        radial-gradient(circle at top right, rgba(70, 54, 255, 0.10), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.categories-table-wrap {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(14, 24, 67, 0.10);
    background: #ffffff;
}

/*.category-table-card {
    position: relative;
    background: #f7f8fb;
    border-right: 1px solid rgba(17, 24, 39, 0.06);
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}*/

.category-table-card {
    position: relative;
    background: #f7f8fb;
    border-right: 1px solid rgba(17, 24, 39, 0.06);
    height: 100%;
    transition: none;
}

/*.category-table-card:last-child {
    border-right: 0;
}*/

.category-table-card:last-child {
    border-right: 0;
}

/*.category-table-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(17, 24, 39, 0.10);
    z-index: 2;
}*/

.category-table-card:hover {
    transform: none;
    box-shadow: none;
    z-index: auto;
}

.category-table-head {
    position: relative;
    padding: 24px 20px;
    text-align: center;
    color: #ffffff;
}

.category-table-head::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background: inherit;
}

.category-card-maintenance .category-table-head {
    background: linear-gradient(135deg, #16b3ff 0%, #0d8fda 100%);
}

.category-card-process .category-table-head {
    background: linear-gradient(135deg, #8b3dff 0%, #6b2cf5 100%);
}

.category-card-report .category-table-head {
    background: linear-gradient(135deg, #3b248d 0%, #2d1972 100%);
}

.category-table-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.category-table-body {
    padding: 52px 34px 38px;
    text-align: center;
}

.category-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.category-icon {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.category-card-maintenance .category-icon {
    background: linear-gradient(135deg, #20d6ff 0%, #0aa8ea 100%);
}

.category-card-process .category-icon {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
}

.category-card-report .category-icon {
    background: linear-gradient(135deg, #5a31d6 0%, #37178f 100%);
}

.category-body-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 8px;
}

.category-body-subtitle {
    font-size: 1rem;
    color: #667085;
    margin-bottom: 28px;
}

.category-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.category-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.04rem;
    color: #1f2937;
    padding: 10px 0;
    line-height: 1.5;
}

.category-feature-list li i {
    color: #06b48b;
    margin-top: 4px;
    font-size: 0.95rem;
    min-width: 16px;
}

/*.featured-category {
    background: linear-gradient(180deg, #f8f5ff 0%, #f6f3ff 100%);
    z-index: 1;
}*/

/*.category-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 18px;
    background: linear-gradient(90deg, #ffd43b 0%, #ffb62d 100%);
    color: #111827;
    font-weight: 800;
    font-size: 0.98rem;
    text-align: center;
    letter-spacing: 0.01em;
    z-index: 3;
}*/

/*.featured-category .category-table-head {
    margin-top: 46px;
}*/

@media (max-width: 991.98px) {
    .module-categories-section {
        padding: 90px 0;
    }

    .categories-table-wrap {
        border-radius: 24px;
        overflow: visible;
        box-shadow: none;
        background: transparent;
    }

    .category-table-card {
        border-right: 0;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 45px rgba(17, 24, 39, 0.10);
        margin-bottom: 24px;
    }

    .category-table-card:last-child {
        margin-bottom: 0;
    }

    /*.featured-category .category-table-head {
        margin-top: 46px;
    }*/
}

@media (max-width: 767.98px) {
    .category-table-title {
        font-size: 1.6rem;
    }

    .category-body-title {
        font-size: 1.45rem;
    }

    .category-table-body {
        padding: 44px 24px 30px;
    }

    .category-feature-list li {
        font-size: 0.98rem;
    }

    .category-icon {
        width: 68px;
        height: 68px;
        border-radius: 20px;
        font-size: 1.55rem;
    }
}

/**/
/* FOOTER */
.site-footer {
    background: linear-gradient(135deg, #1f1b6b 0%, #2f2aa3 45%, #4636ff 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}

.footer-top {
    padding-bottom: 36px;
}

.footer-logo {
    max-width: 220px;
    width: 100%;
    height: auto;
}

.footer-text {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
    max-width: 360px;
    margin-bottom: 0;
}

.footer-block {
    height: 100%;
}

.footer-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
}

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

.footer-links li + li {
    margin-top: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #ff7a59;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-contact-item a,
.footer-contact-item span {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    line-height: 1.7;
}

.footer-contact-item a:hover {
    color: #ff7a59;
}

.footer-cta-btn {
    display: inline-block;
    text-decoration: none;
    background: #ff7a59;
    color: #ffffff;
    padding: 13px 20px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s ease;
}

.footer-cta-btn:hover {
    background: #ff6843;
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 22px 0 26px;
    margin-top: 18px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

@media (max-width: 991.98px) {
    .site-footer {
        padding-top: 75px;
    }
}

@media (max-width: 767.98px) {
    .site-footer {
        padding-top: 65px;
    }

    .footer-logo {
        max-width: 190px;
    }

    .footer-text {
        max-width: 100%;
    }

    .footer-top {
        padding-bottom: 28px;
    }

    .footer-bottom {
        padding: 18px 0 22px;
    }
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.footer-social-link:hover {
    color: #ffffff;
    background: rgba(93, 211, 182, 0.16);
    border-color: rgba(93, 211, 182, 0.42);
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(93, 211, 182, 0.18);
}

.footer-social-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.footer-social-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

@media (max-width: 575.98px) {
    .footer-social-links {
        gap: 12px;
    }

    .footer-social-link {
        width: 44px;
        height: 44px;
    }

    .footer-social-icon,
    .footer-social-icon svg {
        width: 18px;
        height: 18px;
    }
}

/**/
.category-accordion-item {
    list-style: none;
    margin-top: 8px;
}

.category-accordion-item::before {
    display: none;
}

.category-accordion-btn {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px !important;
    box-shadow: none !important;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
}

.category-accordion-btn:not(.collapsed) {
    background: rgba(255, 255, 255, 0.8);
    color: #111827;
}

.category-accordion-btn:focus {
    box-shadow: none !important;
    border-color: rgba(0, 0, 0, 0.08);
}

.category-accordion-body {
    padding: 12px 16px 4px;
    background: transparent;
}

.subcategory-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.subcategory-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #4b5563;
    padding: 6px 0;
}

.subcategory-list li i {
    color: #16a34a;
    font-size: 0.85rem;
}

.accordion-item {
    border: 0 !important;
    background: transparent !important;
}

.accordion-button::after {
    transform: scale(0.9);
}


/* Acordeón ocupa todo el ancho */
.category-accordion-item .accordion {
    width: 100%;
}

/* Botón ocupa todo el ancho */
.category-accordion-btn {
    width: 100%;
    display: flex;
}

/* Item completo */
.category-accordion-item .accordion-item {
    width: 100%;
}

/* Body del acordeón */
.category-accordion-body {
    width: 100%;
}

/* Evitar que algo lo limite */
.category-feature-list {
    width: 100%;
    padding-left: 0;
}