: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;
    }
}