:root {
    --primary: #1973fe;
    --secondary: #0a1f44;
    --primary-invert: #fff;
    --secondary-invert: #fff;

    --gradient-primary: linear-gradient(25deg, #1973fe, #1973fe);
    --gradient-secondary: linear-gradient(230deg, #0a1f44, #020024);

    /* EXTRA COLORS */
    --Green: #00a761;
    --Yellow: #f2b100;
    --Blue: #06b7f9;
    --Purple: #7a7aff;

    /* DEFAULT COLOR OF TEXTS */
    --text-primary: #0a1f44;

    /* FOR BUTTONS & INPUTS */
    --elements-roundness: 4px;

    --space-between-blocks: 2rem;
    /* for mobiles */
    --space-between-blocks-small-screens: 1rem;
}

@font-face {
    font-family: Preevio;
    src: url(https://app.frontendor.com/version3/assets/ui-library/Blocks/blocks__assets/fonts/Preevio_Regular.otf);
    font-weight: 400;
    letter-spacing: 0.5px;
}

@font-face {
    font-family: Preevio;
    src: url(https://app.frontendor.com/version3/assets/ui-library/Blocks/blocks__assets/fonts/Preevio_Medium.otf);
    font-weight: 700;
    letter-spacing: 0.5px;
}

body {
    font-family: 'Preevio';
    color: var(--text-primary);
}

@media only screen and (min-width: 992px) {
    .container {
        max-width: 1400px !important;
    }
}

.space-between-blocks {
    padding-top: var(--space-between-blocks-small-screens);
    padding-bottom: var(--space-between-blocks-small-screens);
}

@media (min-width: 992px) {
    .space-between-blocks {
        padding-top: var(--space-between-blocks);
        padding-bottom: var(--space-between-blocks);
    }
}

/* ----------------- BUTTONS ------------------- */

button {
    color: inherit;
    padding: 0;
    background: none;
    border: none;
}

button:focus {
    outline: none;
    box-shadow: none;
}

.btn {
    font-size: 0.87rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: var(--elements-roundness);
    transition: 0.2s all;
    box-shadow: 0 10px 30px 0px rgb(0 0 0 / 5%);
}

.btn,
.btn:hover,
.btn:focus {
    outline: none;
}

.btn:hover,
.btn:focus {
    transform: scale(1.05);
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus {
    background: var(--gradient-primary, --primary);
    color: var(--primary-invert);
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
    background: #e0f2fe;
    color: #0369a1;
    border: 1px solid #7dd3fc;
}

.btn-primary--empty,
.btn-primary--empty:hover,
.btn-primary--empty:focus {
    color: var(--primary);
}

.btn-primary--outline,
.btn-primary--outline:hover,
.btn-primary--outline:focus {
    background: #f5f3ff;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn--green,
.btn--green:hover,
.btn--green:focus {
    background: var(--Green);
    color: white;
}

.btn--yellow,
.btn--yellow:hover,
.btn--yellow:focus {
    background: var(--Yellow);
    color: #1e293b;
}

.btn--purple,
.btn--purple:hover,
.btn--purple:focus {
    background: var(--Purple);
    color: white;
}

.btn--blue,
.btn--blue:hover,
.btn--blue:focus {
    background: var(--Blue);
    color: white;
}

.btn-outline-secondary,
.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #94a3b8;
}

.btn-light:not(.cms-btn-cta),
.btn-light:not(.cms-btn-cta):hover,
.btn-light:not(.cms-btn-cta):focus {
    background: #e0f2fe;
    color: #0369a1;
    border: 1px solid #7dd3fc;
}

.btn-sm {
    padding: 0.8rem;
}

.highlight {
    color: var(--primary);
}

.highlight--green {
    color: var(--Green);
}
.highlight--yellow {
    color: var(--Yellow);
}
.highlight--blue {
    color: var(--Blue);
}
.highlight--purple {
    color: var(--Purple);
}

/* block header */

.block__header {
    margin-bottom: 2rem;
}

.block__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
}

.block__title--big {
    font-weight: 700;
    font-size: 2rem;
    font-weight: 700;
}

@media (min-width: 992px) {
    .block__title {
        font-size: 2.5rem;
    }

    .block__title--big {
        font-size: 4.1rem;
        line-height: 1.2;
    }

    .block__header {
        margin-bottom: 4rem;
    }
}

.block__paragraph {
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.block__paragraph--big {
    font-size: 1.1rem;
    font-weight: 400;
}

@media (min-width: 992px) {
    .block__paragraph--big {
        font-size: 1.4rem;
        line-height: 1.6;
    }
}

/* Icons */

.fr-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 3px;
    color: var(--primary);
    background: none;
    margin-bottom: 1.5rem;
    transition: 0.5s;
}

.fr-icon--medium {
    font-size: 1.5rem;
    height: 3rem;
    width: 3rem;
}

.fr-icon--large {
    font-size: 1.2rem;
    height: 3.25rem;
    width: 3.25rem;
}

@media (min-width: 992px) {
    .fr-icon--large {
        height: 3.8rem;
        width: 3.8rem;
        font-size: 1.9rem;
    }
}

/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.hero {
    --hero-nav-height: 88px;
    --block-background: white;
    --block-text-color: var(--text-primary);
    color: var(--block-text-color);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.06);
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 40%, #fefce8 100%);
}

.hero-nav {
    top: 0;
    left: 0;
    right: 0;
    width: 90%;
    height: var(--hero-nav-height);
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-nav__item {
    margin: auto;
    font-size: 1.1rem;
}

@media (min-width: 992px) {
    .hero-nav__item {
        margin: 0 1rem;
    }
}

@media (min-width: 992px) {
    .nav--lg-side {
        flex-direction: row-reverse;
    }
}

.hero-nav__logo {
    height: 60px;
}

.hero-nav__link {
    color: inherit;
    opacity: 0.9;
    text-decoration: none;
}

.hero-nav__link:focus,
.hero-nav__link:hover {
    color: inherit;
    text-decoration: none;
    opacity: 1;
}

.ft-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2000;
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@media (print), (prefers-reduced-motion: reduce) {
    .ft-menu {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
    }
}

.ft-menu .hero-nav__item {
    width: 100%;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 992px) {
    .ft-menu .hero-nav__item {
        width: auto;
        margin-top: 0;
        margin-bottom: 0;
    }
}

.ft-menu--js-show {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

.ft-menu::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: var(--primary);
    opacity: 0.9;
    z-index: -1;
}

@media (min-width: 992px) {
    .ft-menu {
        -webkit-animation-name: none;
        animation-name: none;
        position: static;
        z-index: auto;
    }

    .ft-menu::before {
        content: none;
    }
}

.ft-menu__slider {
    --block-background: white;
    --block-text-color: var(--text-primary);
    color: var(--block-text-color);
    background: var(--block-background);
    width: 80%;
    height: 100%;
    overflow: hidden;
    transform: translateX(-100%);
    transition: 0.5s transform;
}

@media (min-width: 992px) {
    .ft-menu__slider {
        --block-background: transparent;
        --block-text-color: var(--block-text-color);
        width: auto;
        height: auto;
        background: 0 0;
        transform: none;
        display: flex;
        align-items: center;
    }
}

.ft-menu--js-show .ft-menu__slider {
    transform: translateX(0);
}

.ft-menu__close-btn {
    color: var(--primary-invert);
    position: absolute;
    right: 0;
    top: 0;
    font-size: 2rem;
    margin: 1rem;
    transform: translateX(100%);
    transition: 0.5s transform;
}

@media (min-width: 992px) {
    .ft-menu__close-btn {
        display: none;
    }
}

.ft-menu--js-show .ft-menu__close-btn {
    transform: translateX(0);
}

.ft-menu__close-btn:focus,
.ft-menu__close-btn:hover {
    color: var(--primary-invert);
}

@-webkit-keyframes fadeIn {
    from {
        visibility: hidden;
        opacity: 0;
    }

    to {
        visibility: visible;
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        visibility: hidden;
        opacity: 0;
    }

    to {
        visibility: visible;
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    from {
        visibility: visible;
        opacity: 1;
    }

    to {
        visibility: hidden;
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        visibility: visible;
        opacity: 1;
    }

    to {
        visibility: hidden;
        opacity: 0;
    }
}

.fixed-nav-container {
    height: var(--hero-nav-height);
}

.hero-nav--is-sticky {
    --block-background: white;
    color: var(--block-text-color);
    background: var(--block-background);
    position: fixed !important;
    left: 0;
    right: 0;
    margin: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem !important;
    height: 60px;
    transition: 0.2s height;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@media (min-width: 992px) {
    .hero-nav--is-sticky {
        height: 80px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        padding: 1rem 1.5rem !important;
    }
}

.ft-menu__slider {
    color: var(--block-text-color);
}

.hero-nav--is-sticky .ft-menu__slider {
    color: var(--text-primary);
}

.hero-nav--is-sticky .btn {
    background: var(--gradient-primary, var(--primary));
    color: var(--primary-invert);
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.ft-menu__slider .hero-nav__item {
    font-size: 1.1rem;
    padding: 0 1rem;
}

@media (min-width: 992px) {
    .ft-menu__slider .hero-nav__item {
        padding: 0;
    }
}

.hero-nav__link {
    display: flex;
    align-items: center;
    outline: 0 !important;
}

.ft-menu__slider {
    overflow-x: hidden;
    overflow-y: auto;
}

@media (min-width: 992px) {
    .ft-menu__slider {
        overflow: visible;
    }
}

.hero-nav__item--with-dropdown {
    position: relative;
    cursor: pointer;
}

@media (min-width: 992px) {
    .hero-nav__item--with-dropdown::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 176%;
    }
}

.hero-nav__dropdown {
    position: static;
    width: 100%;
    height: auto;
    font-size: 0.9rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all;
    color: var(--text-primary);
    text-align: initial;
    cursor: auto;
}

@media (min-width: 992px) {
    .hero-nav__dropdown {
        position: absolute;
        top: 176%;
        left: 0;
        margin-top: 0;
        border-radius: 10px;
        border-top: none;
        box-shadow: 0 14px 50px 0 rgba(0, 0, 0, 0.1);
        background-color: #fff;
        z-index: 2;
        max-height: 0;
        padding: 2.3rem 3rem 2rem 2rem;
        overflow: visible;
        transition: 0.3s all;
    }
}

.dropdown--important {
    position: absolute;
    width: auto !important;
    top: 176%;
    left: 0;
    margin-top: 0;
    border-radius: 10px;
    border-top: none;
    box-shadow: 0 14px 50px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
    z-index: 2;
    max-height: 0;
    padding: 2rem;
    padding-right: 3rem;
    overflow: visible;
    transition: 0.3s all;
}

@media (min-width: 992px) {
    .dropdown--of-1-columns {
        width: 400px;
    }

    .dropdown--of-2-columns {
        width: 700px;
    }

    .dropdown--language-selector {
        width: 250px;
    }
}

.hero-nav__item--show-dropdown .hero-nav__dropdown {
    margin-top: 1rem;
    visibility: visible;
    opacity: 1;
    max-height: 9999px;
    padding-top: 1rem;
}

@media (min-width: 992px) {
    .hero-nav__item--show-dropdown .hero-nav__dropdown {
        margin-top: 0;
        padding: 2.3rem 3rem 2rem 2rem;
    }
}

.hero-nav__item-chevron {
    transition: 0.3s all;
}

.hero-nav__item--show-dropdown .hero-nav__item-chevron {
    transform: rotate(180deg);
}

.hero-nav__item--dropdown-left .hero-nav__dropdown {
    transform: translateX(-15px) !important;
}

.hero-nav__item--dropdown-left .hero-nav__dropdown::before {
    left: 15%;
    right: auto;
}

.hero-nav__item--dropdown-right .hero-nav__dropdown {
    transform: translateX(15px) !important;
    left: auto;
    right: 0;
}

.hero-nav__item--dropdown-right .hero-nav__dropdown::before {
    left: auto;
    right: 15%;
}

@media (min-width: 992px) {
    .hero-nav__item--lg-dropdown-left .hero-nav__dropdown {
        transform: translateX(-15px) !important;
        left: 0;
        right: auto;
    }

    .hero-nav__item--lg-dropdown-left .hero-nav__dropdown::before {
        left: 15%;
        right: auto;
    }

    .hero-nav__item--lg-dropdown-right .hero-nav__dropdown {
        transform: translateX(15px) !important;
        left: auto;
        right: 0;
    }

    .hero-nav__item--lg-dropdown-right .hero-nav__dropdown::before {
        left: auto;
        right: 15%;
    }
}

.dropdown--important::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6.85px 8.1px 6.85px;
    border-color: transparent transparent #fff transparent;
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    margin: auto;
}

@media (min-width: 992px) {
    .hero-nav__dropdown::before {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 6.85px 8.1px 6.85px;
        border-color: transparent transparent #fff transparent;
        position: absolute;
        top: -6px;
        left: 0;
        right: 0;
        margin: auto;
    }
}

.dropdown__title {
    color: var(--text-primary);
    opacity: 0.7;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
    margin-bottom: 1.18rem;
}

.dropdown__link {
    display: flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    margin-bottom: 1.3rem;
    color: inherit;
    text-decoration: none;
}

.dropdown__link:focus,
.dropdown__link:hover {
    color: inherit;
    text-decoration: none;
}

[javascript-language-selector] .dropdown__link {
    border-radius: 0.5rem;
    padding: 0.7rem;
    margin-bottom: 3px;
}

.dropdown__link::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dropdown__link:last-child {
    margin: 0;
}

[javascript-language-selector] .dropdown__link--selected,
[javascript-language-selector] .dropdown__link:focus,
[javascript-language-selector] .dropdown__link:hover {
    background: rgba(0, 0, 0, 0.06);
}

.dropdown__icon {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary, var(--primary));
    color: var(--primary-invert);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
    font-size: 13px;
}

@media (min-width: 992px) {
    .dropdown__icon {
        width: 40px;
        height: 40px;
    }
}

.dropdown__item {
    max-width: 250px;
}

.dropdown__item-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    z-index: -1;
}

@media (min-width: 992px) {
    .dropdown__item-title {
        white-space: nowrap;
    }
}

.dropdown__item-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20%;
    width: 100%;
    background: var(--secondary);
    transform: translateY(2px);
    opacity: 0;
    transition: 0.2s;
}

[javascript-language-selector] .dropdown__item-title {
    white-space: nowrap;
}

[javascript-language-selector] .dropdown__item-title::before {
    display: none;
}

.dropdown__link:focus .dropdown__item-title::before,
.dropdown__link:hover .dropdown__item-title::before {
    height: 30%;
    transform: translateY(0);
    opacity: 0.4;
}

.dropdown__item-description {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.3rem;
    margin-bottom: 0;
}

.dropdown__item-description,
.dropdown__item-title {
    width: 95%;
}

.hero__row {
    height: 300px;
    position: static;
}

@media (min-width: 992px) {
    .hero__row {
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        margin: 0;
    }
}

.hero_empty-column {
    height: 100%;
}

.hero__image-column {
    height: 100%;
    background-position: center;
    background-size: cover;
}

.hero__content {
    text-align: initial;
}

.hero__body {
    padding-top: 2rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .hero__body {
        padding-top: 4rem;
        padding-bottom: 7rem;
    }
}

.hero__title {
    font-size: 2rem;
    font-weight: 900;
    background: -webkit-linear-gradient(#1973FE, black);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__paragraph {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.98;
}

@media (min-width: 576px) {
    .hero__title {
        font-size: 2.5rem;
        line-height: 1.17;
    }

    .hero__paragraph {
        width: 80%;
        margin: auto;
    }
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .hero__title {
        font-size: 4.1rem;
        line-height: 1.17;
    }

    .hero__paragraph {
        font-size: 1.4rem;
        width: 80%;
    }
}

@media (min-width: 1200px) {
    .hero__title {
        font-size: 4.1rem;
        line-height: 1.25;
    }
}

.hero__btns-container {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

/*------------------------------*/
/*--Features----------------*/
/*------------------------------*/
.block-1 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
}

.card-1 {
    height: 100%;
}

.card-1:hover {
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 9%);
    padding: 5px;
}

.card-1__title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5;
}

.card-1__paragraph {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

.block-1-testimonial {
    background: #c3f0f7;
    padding: 2.5rem;
    border-radius: 4px;
}

.block-1-testimonial__paragraph {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.block-1-testimonial__quote-svg {
    color: currentColor;
    transform: scale(0.8);
}

.block-1-person {
    font-size: 0.9rem;
}

.block-1-person__link {
    color: var(--text-primary);
    text-decoration: none;
}

.block-1-person__link:focus,
.block-1-person__link:hover {
    color: var(--primary);
    text-decoration: underline;
    opacity: 0.9;
}

.block-1-person__avatar {
    width: 40px;
    height: 40px;
    border-radius: 10rem;
    border: 2px solid #fff;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
}

.mb-2-1rem {
    margin-bottom: 2.1rem;
}

/*------------------------------*/
/*--Industries----------------*/
/*------------------------------*/
.block-2 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
    position: relative;
    z-index: 0;
}

.block-2-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.09);
}

@media (min-width: 992px) {
    .block-2-card {
        padding: 2.5rem;
    }
}

.block-2-card__title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.46;
}

@media (min-width: 992px) {
    .block-2-card__title {
        font-size: 1.5rem;
    }
}

.block-2-card__paragraph {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
}

.block-2-card {
    display: none !important;
}

.block-2-card:first-child {
    display: flex !important;
}

@media (min-width: 992px) {
    .block-2-card:first-child,
    .block-2-card:nth-child(2),
    .block-2-card:nth-child(3) {
        display: flex !important;
    }
}

.splide__track {
    overflow: visible !important;
}

.block-2 {
    overflow-y: hidden;
}

.block-2 .splide__track .splide__slide {
    height: auto !important;
    display: flex !important;
}

.block-2 {
    position: relative;
}

@media (min-width: 992px) {
    .block-2::after,
    .block-2::before {
        content: '';
        position: absolute;
        right: 0;
        left: 0;
        width: 100%;
        height: var(--space-between-blocks);
        background: var(--block-background);
        z-index: 1;
    }

    .block-2::before {
        top: 0;
    }

    .block-2::after {
        bottom: 0;
    }
}

.block-2__splide {
    overflow: hidden;
    position: relative;
}

@media (min-width: 992px) {
    .block-2__splide {
        overflow: visible;
        position: static;
    }
}

.splide__arrows {
    display: none;
}

.block-2__custom-arrows.splide__arrows {
    display: block;
}

.block-2__splide::after,
.block-2__splide::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: calc(100% + 2rem);
    margin: 0 -1rem;
    height: 2rem;
    z-index: 1;
}

@media (min-width: 992px) {
    .block-2__splide::after,
    .block-2__splide::before {
        height: 9rem;
    }
}

.block-2__splide::before {
    top: 0;
    background: linear-gradient(to bottom, var(--block-background) 0, transparent 100%);
}

.block-2__splide::after {
    bottom: 0;
    background: linear-gradient(to top, var(--block-background) 0, transparent 100%);
}

.block-2__splide-btn {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 34px;
    box-shadow: none;
    width: 50px;
    height: 2rem;
    border-radius: 10rem;
    color: var(--block-background);
    background: var(--block-text-color);
    border: none;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    transform: rotate(90deg);
    z-index: 2;
}

@media (min-width: 992px) {
    .block-2__splide-btn {
        right: 22%;
        left: auto;
    }
}

.block-2__splide-btn:focus,
.block-2__splide-btn:hover {
    background: var(--primary);
    color: var(--primary-invert);
}

.splide__slide.is-active .fr-icon {
    background: var(--primary);
    color: var(--primary-invert);
}

.block-2-card__title {
    position: relative;
}

.block-2-card__title::before {
    content: '';
    position: absolute;
    bottom: 1px;
    right: 0;
    left: 0;
    width: 70%;
    height: 0%;
    background: var(--primary);
    opacity: 0.3;
    transition: 0.5s height;
}

@media (min-width: 992px) {
    .block-2-card__title::before {
        width: 30%;
    }
}

.splide__slide.is-active .block-2-card__title::before {
    height: 30%;
}

.block-2__dots-svg--left {
    color: var(--primary);
    top: 0;
    width: 250px;
    height: 100px;
    position: absolute;
    transform: translate(-15rem, 2rem) rotate(90deg);
    z-index: 2;
}

.block-2__dots-svg--right {
    color: var(--primary);
    bottom: 0;
    right: 0;
    width: 250px;
    height: 100px;
    position: absolute;
    transform: translate(14.5rem, -8rem) rotate(90deg);
    z-index: 2;
}

@media (min-width: 1400px) {
    .block-2__splide::after,
    .block-2__splide::before {
        max-width: 89%;
        margin: auto;
    }

    .block-2__dots-svg--left {
        transform: translate(-13rem, 2rem) rotate(90deg);
    }

    .block-2__dots-svg--right {
        transform: translate(13rem, -8rem) rotate(90deg);
    }

    .block-2__splide-btn {
        right: 25%;
    }
}

/*------------------------------*/
/*--Stats----------------*/
/*------------------------------*/
.block-38 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
}

.block__header {
    margin-bottom: 4rem;
}

.block__pre-title {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
}

.block__title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.4;
}

@media (min-width: 992px) {
    .block__title {
        font-size: 2.5rem;
    }
}

.block__paragraph {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.stats {
    background: var(--gradient-secondary);
    color: var(--secondary-invert);
    border-radius: 0.5rem;
    --stats-li-border-color: rgba(255, 255, 255, 0.2);
}

.stats__li {
    border-bottom: 1px solid var(--stats-li-border-color);
    padding: 1.5rem 0 !important;
}

.stats__li:last-child {
    border-bottom: none;
}

.stats__li {
    border-right: 1px solid var(--stats-li-border-color);
    padding: 1.5rem 0 !important;
}

.stats__li:nth-child(3),
.stats__li:nth-child(4) {
    border-bottom: none;
}

.stats__li:nth-child(even) {
    border-right: none;
}

@media (min-width: 992px) {
    .stats__li {
        border-bottom: none;
        border-right: 1px solid var(--stats-li-border-color) !important;
        padding: 0 !important;
    }

    .stats__li:last-child {
        border-right: none !important;
    }
}

.stats__number {
    font-size: 2.5rem;
    font-weight: 900;
}

.stats__text {
    width: 90%;
    margin: auto;
    font-size: 0.87rem;
    opacity: 0.9;
}

@media (min-width: 992px) {
    .stats__text {
        width: 100%;
    }
}

/*------------------------------*/
/*--CTA----------------*/
/*------------------------------*/
.block-29 {
    background: var(--gradient-primary, var(--primary));
    color: var(--primary-invert);
    position: relative;
}

@media (min-width: 992px) {
    .block-29 {
        border-radius: 10px;
    }
}

.block-29__title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.3;
}

.block-29__paragraph {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.block-29__paragraph,
.block-29__title {
    text-align: center;
}

@media (min-width: 992px) {
    .block-29__title {
        font-size: 2.5rem;
    }

    .block-29__paragraph,
    .block-29__title {
        text-align: initial;
    }

    .block-29__paragraph {
        width: 90%;
    }
}

/*------------------------------*/
/*--Footer----------------*/
/*------------------------------*/
.block-44 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    --text-primary: var(--block-text-color);
    background: var(--block-background);
    color: var(--block-text-color);
    font-size: 1rem;
    text-align: center;
}

@media (min-width: 992px) {
    .block-44 {
        text-align: initial;
    }
}

.block-44__logo-container {
    width: 100%;
    margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
    .block-44__logo-container {
        width: auto;
        flex-grow: 1;
        margin-bottom: 0;
    }
}

.block-44__logo {
    height: 36px;
}

.block-44__list {
    display: flex;
    flex-wrap: wrap;
}

.block-44__li-1 {
    margin-bottom: 0.6rem;
    margin: 0.9rem;
}

.block-44__li-1::after {
    content: '';
    display: inline-block;
    width: 0;
}

@media (min-width: 992px) {
    .block-44__li-1 {
        margin: 0;
    }

    .block-44__li-1::after {
        width: 2.8rem;
    }

    .block-44__li-1:last-child::after {
        width: 0;
    }
}

.block-44__link {
    color: var(--block-text-color);
    text-decoration: none;
}

.block-44__link:focus,
.block-44__link:hover {
    color: inherit;
    text-decoration: underline;
}

.block-44__divider {
    margin: 2.4rem 0;
    color: #88909b;
}

.block-44__extra-links {
    justify-content: center;
}

@media (min-width: 768px) {
    .block-44__extra-links {
        justify-content: flex-start;
    }
}

.block-44__copyrights {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 0.9rem;
}

/*------------------------------*/
/*--Contact us----------------*/
/*------------------------------*/
.block-27 {
    --space-between-blocks: 1rem;
    --elements-roundness: 5px;
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.block-27__row {
    height: 300px;
}

@media (min-width: 992px) {
    .block-27__row {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        height: 100%;
    }
}

.block-27__image-column {
    height: 100%;
    background-position: center;
    background-size: cover;
}

@media (min-width: 992px) {
    .block-27__image-column {
        margin: 0 !important;
    }
}

.block-27__content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.block-27__bg-image {
    background-position: center;
    background-size: cover;
}

.contact-form__title {
    font-size: 2.2rem;
    font-weight: 600;
}

.contact-form__paragraph {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.contact-form {
    margin: auto;
}

.hr {
    margin-top: 3rem;
    margin-bottom: 3rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.hr__or {
    background: var(--block-background);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 54px;
    height: 23px;
    margin-top: -12px;
    display: block;
    color: #ccc;
}

.contact-form__input {
    color: var(--text-primary);
    font-size: 0.87rem;
    padding: 0.87rem 1.4rem;
    border-radius: 5px;
    border: 1px solid #e5e7eb;
    background: #fff;
    width: 100%;
    margin-bottom: 0.87rem;
}

textarea.contact-form__input {
    height: 130px;
    resize: none;
}

.contact-form__input:focus {
    border: 1px solid var(--primary);
    outline: 0;
    box-shadow: none;
}

.btn--loading {
    opacity: 1;
    cursor: progress;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn--loading::after,
.btn--loading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.btn--loading::before {
    background: var(--primary);
    width: 100%;
    height: 100%;
    z-index: 1;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btn--loading::after {
    margin: auto;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top: 2px solid var(--primary-invert);
    width: 1.5rem;
    height: 1.5rem;
    -webkit-animation: spin 0.5s linear infinite;
    animation: spin 0.5s linear infinite;
    z-index: 2;
}

.h-100 {
    height: 100% !important;
}

/*------------------------------*/
/*--Page/Blog----------------*/
/*------------------------------*/
.article-block {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
}

.article-block__title {
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1.5;
}

.article-block__info {
    opacity: 0.95;
    font-size: 0.9rem;
    margin: 0;
}

.article-block__author {
    color: inherit;
    position: relative;
    padding-right: 13px;
    margin-right: 13px;
}

.article-block__author:focus,
.article-block__author:hover {
    color: inherit;
    text-decoration: underline;
}

.article-block__author::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 90%;
    margin: auto;
    width: 3px;
    transform: rotate(10deg);
    background: var(--primary);
}

.article-block__header-img {
    width: 100%;
    border-radius: 10px;
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.1));
}

.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
    font-weight: 600;
    line-height: 1.5;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.article-container__title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.article {
    padding: 0 1.5rem;
}

.article p {
    line-height: 2.1;
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .article {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.article img,
.article video {
    width: 100%;
}

pre {
    background: #333;
    color: #fff;
    padding: 1rem;
    border-radius: 5px;
}

ol,
ul {
    line-height: 2;
}

blockquote {
    margin: 0 0 1rem;
    padding: 1rem 1rem 1px 1rem;
    background: rgba(0, 0, 0, 0.02);
    font-style: italic;
    margin-top: 2rem;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
}

/*------------------------------*/
/*--Testionial----------------*/
/*------------------------------*/
.block-20 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
}

.testimonial-card-1 {
    border-radius: 5px;
    position: relative;
    padding: 2.3rem 2.2rem 2.2rem 2.2rem;
    background: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.09);
    margin-bottom: 7rem;
}

@media (min-width: 992px) {
    .testimonial-card-1 {
        height: 100%;
        margin-bottom: 0;
    }
}

.testimonial-card-1__paragraph {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.7;
}

.testimonial-card-1__quote-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary, --primary);
    color: var(--primary-invert);
    font-size: 1.3rem;
    border-radius: 10rem;
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: auto;
}

.block-20-person {
    text-align: center;
    transform: translateY(-5.5rem);
    margin-bottom: -4rem;
}

.block-20-person__avatar {
    padding: 6px;
    width: 116px;
    height: 116px;
    background: #fff;
    border-radius: 10rem;
    border-bottom: 1px solid #ccc;
}

.block-20-person__rating {
    font-size: 0.75rem;
    color: #ffe200;
}

.block-20-person__name {
    font-size: 0.87rem;
    font-weight: 600;
}

.block-20-person__info {
    font-size: 0.87rem;
    opacity: 0.9;
    text-decoration: none;
}

@media (min-width: 1400px) {
    #block__container {
        max-width: 87%;
    }
}

/*------------------------------*/
/*--FAQ----------------*/
/*------------------------------*/
.block-39 {
    --block-background: white;
    --block-text-color: var(--text-primary);
    background: var(--block-background);
    color: var(--block-text-color);
}

.content-block {
    text-align: initial;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .content-block {
        width: 90%;
    }
}

.content-block__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.5;
}

@media (min-width: 992px) {
    .content-block__title {
        font-size: 1.5rem;
    }
}

.content-block__paragraph {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* ==========================================================================
   CMS MODERN - Tema profesional (relacionado con configuración del sitio)
   ========================================================================== */
.cms-modern {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary, #0f172a);
}

/* Hero */
.cms-hero-header { position: relative; }
.cms-hero-block {
    position: relative;
    padding: 2rem 0 4rem;
    overflow: hidden;
}
.cms-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #f8fafc 0%, #f0f9ff 35%, #e0f2fe 70%, #fefce8 100%);
    z-index: 0;
}
.cms-hero-block .container { position: relative; z-index: 1; }
.min-vh-50 { min-height: 50vh; }
.cms-hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: rgba(25, 115, 254, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.cms-hero-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 1rem;
}
.cms-hero-subtitle {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.cms-hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cms-hero-img {
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    max-height: 360px;
    object-fit: cover;
}
.cms-hero-placeholder {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 3rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Navbar moderna (estructura original, estilo actualizado) */
.cms-nav-modern-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.cms-nav-modern.hero-nav {
    min-height: 72px;
    padding: 0 1rem;
}
.cms-nav-modern .hero-nav__logo {
    height: 48px;
    max-height: 48px;
    width: auto;
    object-fit: contain;
}
.cms-nav-modern .hero-nav__link {
    color: #334155;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.35rem 0.5rem;
    border-radius: 0.375rem;
    transition: color 0.2s, background 0.2s;
}
.cms-nav-modern .hero-nav__link:hover {
    color: var(--primary);
    background: rgba(25, 115, 254, 0.06);
}
.cms-nav-modern .dropdown__link {
    color: #334155;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 0.375rem;
    transition: background 0.2s, color 0.2s;
}
.cms-nav-modern .dropdown__link:hover {
    background: #f1f5f9;
    color: var(--primary);
}
.cms-nav-toggle-btn {
    background: none;
    border: none;
    font-size: 1.35rem;
    color: #334155;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    border-radius: 0.375rem;
}
.cms-nav-toggle-btn:hover { color: var(--primary); }
.hero-nav--is-sticky .cms-nav-modern-wrap {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.cms-nav-logo-fallback {
    display: inline-block;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
    white-space: nowrap;
}

/* Botones */
.cms-btn-primary {
    background: linear-gradient(135deg, var(--cms-accent) 0%, var(--cms-accent-dark) 100%) !important;
    border: none !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
    padding: 0.625rem 1.25rem !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}
.cms-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 25px -5px rgba(109, 40, 217, 0.4) !important; }

/* Secciones genéricas (mobile first: menos padding en móvil) */
.cms-section {
    padding: 2.5rem 0;
}
@media (min-width: 768px) {
    .cms-section { padding: 3.5rem 0; }
}
@media (min-width: 992px) {
    .cms-section { padding: 4rem 0; }
}
.cms-section-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}
.cms-section-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.cms-section-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
}
.cms-section-desc p:last-child { margin-bottom: 0; }

/* Features / Cards */
.cms-section-features { background: #fff; }
.cms-section-categories { background: #f8fafc; }
.cms-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}
.cms-card:hover {
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}
.cms-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(25, 115, 254, 0.1);
    color: var(--primary);
    border-radius: 0.5rem;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.cms-card-icon-lg { width: 56px; height: 56px; font-size: 1.5rem; }
.cms-card-title { font-size: 1.125rem; font-weight: 600; color: #0f172a; margin-bottom: 0.5rem; }
.cms-card-text { font-size: 0.9375rem; color: #64748b; line-height: 1.6; margin: 0; }

/* Statistics */
.cms-section-stats { background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%); }
.cms-stat-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}
.cms-stat-card:hover { transform: translateY(-4px); }
.cms-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}
.cms-stat-label { font-size: 0.875rem; color: #64748b; }

/* Testimonials */
.cms-section-testimonials { background: #fff; }
.cms-card-testimonial {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    position: relative;
}
.cms-testimonial-quote {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
}
.cms-testimonial-body {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.cms-testimonial-author { display: flex; flex-direction: column; align-items: center; text-align: center; }
.cms-testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
}
.cms-testimonial-stars { color: #fbbf24; font-size: 0.75rem; margin-bottom: 0.25rem; }
.cms-testimonial-name { font-size: 0.9375rem; color: #0f172a; }

/* CTA */
.cms-section-cta { padding: 3rem 0; }
.cms-cta-box {
    background: var(--gradient-primary, var(--primary));
    color: #fff;
    border-radius: 1rem;
    padding: 2rem 2.5rem;
    box-shadow: 0 20px 40px -15px rgba(25, 115, 254, 0.4);
}
.cms-cta-title { font-size: 1.5rem; font-weight: 700; color: #fff; margin: 0; }
.cms-cta-desc { font-size: 1rem; opacity: 0.95; margin: 0; }
.cms-btn-cta {
    background: #059669 !important;
    color: #fff !important;
    border: none !important;
    font-weight: 600 !important;
    border-radius: 0.5rem !important;
}
.cms-btn-cta:hover { background: #047857 !important; color: #fff !important; }

/* FAQ */
.cms-section-faq { background: #f8fafc; }
.cms-card-faq {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
}
.cms-faq-question { font-size: 1rem; font-weight: 600; color: #0f172a; margin-bottom: 0.5rem; }
.cms-faq-answer { font-size: 0.9375rem; color: #64748b; line-height: 1.6; }

/* Industries (Splide) */
.cms-section-industries { background: #fff; }
.cms-industries-splide { position: relative; }
.cms-industries-splide .splide__arrow--next.cms-splide-next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}
.cms-card-industry { padding: 1.25rem; }

/* Footer */
.cms-footer { background: #f8fafc; padding: 1rem 0; }
.cms-footer-divider { border-color: #e2e8f0; margin: 0; }
.cms-footer-social { gap: 1rem; }
.cms-footer-link {
    color: #64748b;
    font-size: 1.25rem;
    transition: color 0.2s;
}
.cms-footer-link:hover { color: var(--primary); }
.cms-footer-copy { font-size: 0.875rem; color: #64748b; }

/* ==========================================================================
   INICIO MODERNO - Hero y secciones actualizadas
   ========================================================================== */

/* Variables adicionales para tema moderno - Paleta violeta + esmeralda */
.cms-modern {
    --cms-accent: #6d28d9;
    --cms-accent-light: #8b5cf6;
    --cms-accent-dark: #5b21b6;
    --cms-accent-soft: #a78bfa;
    --cms-emerald: #059669;
    --cms-emerald-light: #10b981;
    --cms-surface: #ffffff;
    --cms-surface-2: #f8fafc;
    --cms-surface-3: #f1f5f9;
    --cms-text: #0f172a;
    --cms-text-muted: #64748b;
    --cms-radius: 1rem;
    --cms-radius-lg: 1.5rem;
    --cms-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --cms-shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.03);
    --cms-shadow-glow: 0 0 60px -12px rgba(109, 40, 217, 0.4);
}

/* ----- Hero moderno ----- */
.cms-hero-modern { position: relative; }
.cms-hero-block-modern {
    position: relative;
    padding: 3rem 0 5rem;
    overflow: hidden;
}
.min-vh-60 { min-height: 60vh; }
@media (min-width: 992px) {
    .min-vh-60 { min-height: 65vh; }
    .py-lg-6 { padding-top: 4rem; padding-bottom: 4rem; }
}

/* Fondo con gradiente animado suave - violeta + cielo */
.cms-hero-bg-modern {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 25%, #e0e7ff 50%, #e0f2fe 65%, #f0fdf4 100%);
    background-size: 200% 200%;
    animation: cms-gradient-shift 18s ease infinite;
}
@keyframes cms-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
    .cms-hero-bg-modern { animation: none; }
}

/* Orbes decorativos (blur) - violeta + esmeralda */
.cms-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    pointer-events: none;
}
.cms-hero-orb--1 {
    width: 320px;
    height: 320px;
    background: rgba(139, 92, 246, 0.4);
    top: -80px;
    right: -80px;
}
.cms-hero-orb--2 {
    width: 280px;
    height: 280px;
    background: rgba(16, 185, 129, 0.25);
    bottom: 10%;
    left: -60px;
}
.cms-hero-orb--3 {
    width: 200px;
    height: 200px;
    background: rgba(99, 102, 241, 0.2);
    top: 50%;
    right: 20%;
}

/* Patrón de cuadrícula sutil */
.cms-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.6) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.6) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
    pointer-events: none;
}

/* Tarjetas del hero: dos cuadros bonitos */
.cms-hero-card {
    border-radius: 1.5rem;
    padding: 2rem 1.75rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
@media (min-width: 992px) {
    .cms-hero-card { padding: 2.5rem 2rem; }
}
.cms-hero-card--text {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 50%, rgba(245, 243, 255, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.9);
}
.cms-hero-card--text .cms-hero-trust {
    color: #475569;
}
.cms-hero-card--visual {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 249, 255, 0.95) 50%, rgba(236, 254, 255, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.9);
}
.cms-hero-card--visual .cms-hero-placeholder-modern {
    box-shadow: none;
    border: none;
    background: transparent;
}
.cms-hero-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.95) inset;
}

/* Badge */
.cms-hero-badge-modern {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cms-accent-dark);
    background: rgba(255, 255, 255, 0.95);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
    box-shadow: var(--cms-shadow);
    border: 1px solid rgba(109, 40, 217, 0.2);
}

/* Título con gradiente opcional */
.cms-hero-title-modern {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--cms-text);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.cms-hero-title-modern strong { color: var(--cms-accent); }

.cms-hero-subtitle-modern {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--cms-text-muted);
    margin-bottom: 1.75rem;
    max-width: 520px;
}

/* Botones hero */
.cms-hero-actions-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.cms-btn-hero {
    padding: 0.875rem 1.75rem !important;
    font-size: 1rem !important;
    border-radius: 0.75rem !important;
    background: linear-gradient(135deg, var(--cms-accent) 0%, var(--cms-accent-dark) 100%) !important;
    border: none !important;
    box-shadow: 0 10px 30px -8px rgba(109, 40, 217, 0.5) !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}
.cms-btn-hero:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 16px 40px -10px rgba(109, 40, 217, 0.55) !important;
}
.cms-btn-hero-outline {
    border: 2px solid rgba(109, 40, 217, 0.5) !important;
    background: #ede9fe !important;
    color: var(--cms-accent-dark) !important;
    font-weight: 600 !important;
    border-radius: 0.75rem !important;
    transition: border-color 0.2s, background 0.2s, transform 0.2s, color 0.2s !important;
}
.cms-btn-hero-outline:hover {
    border-color: var(--cms-accent) !important;
    background: #ddd6fe !important;
    color: var(--cms-accent) !important;
    transform: translateY(-1px);
}

.cms-hero-trust { opacity: 0.9; }

/* Bloque visual (imagen o placeholder) */
.cms-hero-visual {
    position: relative;
    display: inline-block;
}
.cms-hero-img-modern {
    border-radius: var(--cms-radius-lg);
    box-shadow: var(--cms-shadow-lg), var(--cms-shadow-glow);
    max-height: 380px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.8);
}
.cms-hero-placeholder-modern {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: var(--cms-radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--cms-shadow-lg);
    max-width: 420px;
    margin: 0 auto;
}
.cms-hero-placeholder-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cms-accent) 0%, var(--cms-accent-dark) 100%);
    color: #fff;
    border-radius: 1.25rem;
    font-size: 2rem;
    box-shadow: 0 12px 28px -8px rgba(109, 40, 217, 0.45);
}
.cms-hero-placeholder-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cms-text);
    margin-bottom: 0.5rem;
}
.cms-hero-placeholder-desc {
    font-size: 0.9375rem;
    color: var(--cms-text-muted);
    margin: 0;
}

/* Ondulación inferior del hero */
.cms-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    color: var(--cms-surface-2);
    z-index: 1;
}
.cms-hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ----- Secciones: más aire y títulos (mobile first) ----- */
.cms-section {
    padding: 2.5rem 0;
}
@media (min-width: 768px) {
    .cms-section { padding: 3.5rem 0; }
}
@media (min-width: 992px) {
    .cms-section { padding: 4.5rem 0; }
}
@media (min-width: 1200px) {
    .cms-section { padding: 5rem 0; }
}
.cms-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--cms-text);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.cms-section-subtitle {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--cms-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}
.cms-section-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--cms-text-muted);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ----- Cards de categorías/features más modernas ----- */
.cms-section-categories {
    background: linear-gradient(180deg, #f8fafc 0%, #faf5ff 100%);
    position: relative;
    z-index: 2;
}
.cms-card-feature {
    background: var(--cms-surface);
    border: 1px solid #e2e8f0;
    border-radius: var(--cms-radius);
    padding: 2rem 1.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}
.cms-card-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cms-accent), var(--cms-emerald));
    opacity: 0;
    transition: opacity 0.25s ease;
}
.cms-card-feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--cms-shadow-lg);
    border-color: rgba(109, 40, 217, 0.2);
}
.cms-card-feature:hover::before { opacity: 1; }
.cms-card-feature .cms-card-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.12) 0%, rgba(16, 185, 129, 0.08) 100%);
    color: var(--cms-accent);
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
}
.cms-card-feature .cms-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.cms-card-feature .cms-card-text {
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* ----- Funcionalidades: título con fondo bonito ----- */
.cms-funcionalidades-header {
    text-align: center;
    padding: 2.5rem 2rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 40%, #e0f2fe 70%, #f0fdf4 100%);
    border-radius: 1.25rem;
    border: 1px solid rgba(14, 165, 233, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}
.cms-funcionalidades-header .cms-section-subtitle {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0ea5e9;
}
.cms-funcionalidades-header .cms-section-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.cms-funcionalidades-header .cms-section-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ----- Funcionalidades: cajitas llamativas por opción ----- */
.cms-funcionalidad-caja {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.75rem 1.5rem;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cms-funcionalidad-caja::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.cms-funcionalidad-caja:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(14, 165, 233, 0.35);
}
.cms-funcionalidad-caja:hover::before {
    opacity: 1;
}
.cms-funcionalidad-caja__icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #0ea5e9;
    border-radius: 1rem;
    font-size: 1.75rem;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cms-funcionalidad-caja:hover .cms-funcionalidad-caja__icon-wrap {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
}
.cms-funcionalidad-caja__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.cms-funcionalidad-caja__text {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ----- Estadísticas más impactantes ----- */
.cms-section-stats {
    background: linear-gradient(180deg, #faf5ff 0%, #f3e8ff 50%, #e9d5ff 100%);
}
.cms-stat-card {
    background: var(--cms-surface);
    border-radius: var(--cms-radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--cms-shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cms-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--cms-shadow-lg);
}
.cms-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cms-accent) 0%, var(--cms-emerald) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.cms-stat-label {
    font-size: 0.9375rem;
    color: var(--cms-text-muted);
    font-weight: 500;
}

/* ----- CTA más llamativo ----- */
.cms-section-cta { padding: 4rem 0; }
.cms-cta-box {
    background: linear-gradient(135deg, var(--cms-accent) 0%, var(--cms-accent-dark) 50%, #4c1d95 100%);
    color: #fff;
    border-radius: var(--cms-radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--cms-shadow-glow), 0 0 0 1px rgba(255,255,255,0.1) inset;
    position: relative;
    overflow: hidden;
}
.cms-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cms-cta-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
    position: relative;
}
.cms-cta-desc {
    font-size: 1.0625rem;
    opacity: 0.95;
    margin: 0 0 1.5rem;
    position: relative;
}
.cms-btn-cta {
    background: #059669 !important;
    color: #fff !important;
    border: none !important;
    font-weight: 600 !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 0.75rem !important;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35) !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}
.cms-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.45) !important;
    background: #047857 !important;
    color: #fff !important;
}

/* ----- FAQ y testimonios ----- */
.cms-section-faq { background: var(--cms-surface-2); }
.cms-card-faq {
    background: var(--cms-surface);
    border: 1px solid #e2e8f0;
    border-radius: var(--cms-radius);
    padding: 1.75rem;
    height: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.cms-card-faq:hover {
    border-color: rgba(109, 40, 217, 0.2);
    box-shadow: var(--cms-shadow);
}
.cms-faq-question { font-size: 1.0625rem; font-weight: 600; color: var(--cms-text); margin-bottom: 0.5rem; }
.cms-faq-answer { font-size: 0.9375rem; color: var(--cms-text-muted); line-height: 1.65; }

.cms-card-testimonial {
    border-radius: var(--cms-radius);
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cms-card-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--cms-shadow-lg);
}

/* ----- Footer: fondo bonito + iconos sociales modernos ----- */
.cms-footer {
    position: relative;
    color: #94a3b8;
    padding: 2.5rem 0;
    overflow: hidden;
}
.cms-footer-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #1e1b4b 0%, #312e81 35%, #1e3a5f 70%, #0f172a 100%);
    background-size: 100% 100%;
}
.cms-footer-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse 60% 40% at 0% 100%, rgba(139, 92, 246, 0.1) 0%, transparent 45%),
                radial-gradient(ellipse 60% 40% at 100% 100%, rgba(6, 182, 212, 0.08) 0%, transparent 45%);
    pointer-events: none;
}
.cms-footer .container { position: relative; z-index: 1; }
.cms-footer-divider { border-color: rgba(255,255,255,0.1); margin: 0; }
.cms-footer-copy { color: #94a3b8; font-size: 0.875rem; }

/* Iconos sociales modernos (estilo llantaselpana: círculos con hover y color de marca) */
.cms-footer-social { gap: 0.75rem; }
.cms-footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #c4b5fd;
    font-size: 1.1rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.cms-footer-social-icon:hover {
    transform: translateY(-3px);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.cms-footer-social-icon--facebook:hover { background: #1877f2; }
.cms-footer-social-icon--instagram:hover { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.cms-footer-social-icon--twitter:hover { background: #1da1f2; }
.cms-footer-social-icon--linkedin:hover { background: #0a66c2; }
.cms-footer-social-icon--youtube:hover { background: #ff0000; }

/* ==========================================================================
   HOME ULTRA MODERNO - Navbar glass, hero gradiente, animaciones
   ========================================================================== */

/* Smooth scroll y base */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

/* Navbar tipo glass más marcado */
.cms-nav-glass {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.cms-nav-glass .hero-nav__link { color: #334155; }
.cms-nav-glass .hero-nav__link:hover { color: var(--cms-accent); }
.cms-nav-glass .cms-btn-primary {
    background: linear-gradient(135deg, var(--cms-accent) 0%, var(--cms-accent-dark) 100%) !important;
    box-shadow: 0 4px 14px rgba(109, 40, 217, 0.4) !important;
}

/* Fondo bonito detrás del menú: barra con gradiente suave */
.cms-nav-bar-bg {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 40%, #f0f9ff 75%, #e0f2fe 100%) !important;
    border-bottom: 1px solid rgba(14, 165, 233, 0.15);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}
@media (min-width: 992px) {
    .cms-nav-bar-bg .hero-nav {
        border-radius: 0 0 1rem 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Dropdown Páginas: opciones en tarjetas bonitas */
.cms-nav-dropdown-cards {
    padding: 1rem !important;
    min-width: 320px;
}
@media (min-width: 576px) {
    .cms-nav-dropdown-cards {
        min-width: 420px;
    }
}
@media (min-width: 992px) {
    .hero-nav__item--show-dropdown .cms-nav-dropdown-cards {
        padding: 1.25rem !important;
    }
    .cms-nav-dropdown-cards.dropdown--of-1-columns {
        width: 520px;
        max-width: 90vw;
    }
}

.cms-nav-option-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    height: 100%;
    min-height: 56px;
}
.cms-nav-option-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(14, 165, 233, 0.3);
    color: #0f172a;
}
.cms-nav-option-card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f9ff;
    color: #0ea5e9;
    border-radius: 0.5rem;
    font-size: 1rem;
    flex-shrink: 0;
}
.cms-nav-option-card__title {
    flex: 1;
    font-size: 0.9375rem;
    line-height: 1.3;
}
.cms-nav-option-card__arrow {
    font-size: 0.75rem;
    color: #94a3b8;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s, transform 0.2s;
}
.cms-nav-option-card:hover .cms-nav-option-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Menú móvil: enlaces como tarjetas */
@media (max-width: 991.98px) {
    .ft-menu__slider .hero-nav__item .hero-nav__link,
    .ft-menu__slider .hero-nav__item .cms-btn-primary {
        display: block;
        padding: 0.875rem 1rem;
        margin-bottom: 0.5rem;
        border-radius: 0.75rem;
        background: #fff;
        border: 1px solid #e2e8f0;
        color: #334155;
        text-align: left;
        transition: box-shadow 0.2s, border-color 0.2s;
    }
    .ft-menu__slider .hero-nav__item .hero-nav__link:hover,
    .ft-menu__slider .hero-nav__item .cms-btn-primary:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        border-color: rgba(14, 165, 233, 0.25);
    }
    .ft-menu__slider .hero-nav__item .cms-btn-primary {
        background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%) !important;
        color: #fff !important;
        border: none;
        text-align: center;
    }
}

/* Título hero con gradiente de texto - violeta */
.cms-hero-title-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #312e81 40%, var(--cms-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (min-width: 768px) {
    .cms-hero-title-gradient {
        background: linear-gradient(135deg, #0f172a 0%, #3730a3 30%, var(--cms-accent) 60%, var(--cms-emerald) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

/* Animación suave de entrada para secciones */
.cms-section {
    animation: cms-fade-in-up 0.6s ease-out both;
}
.cms-section:nth-child(1) { animation-delay: 0.05s; }
.cms-section:nth-child(2) { animation-delay: 0.1s; }
.cms-section:nth-child(3) { animation-delay: 0.15s; }
.cms-section:nth-child(4) { animation-delay: 0.2s; }
.cms-section:nth-child(5) { animation-delay: 0.25s; }
.cms-section:nth-child(6) { animation-delay: 0.3s; }
.cms-section:nth-child(7) { animation-delay: 0.35s; }
.cms-section:nth-child(8) { animation-delay: 0.4s; }
@keyframes cms-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (prefers-reduced-motion: reduce) {
    .cms-section { animation: none; }
}

/* Hero: animación suave del contenido */
.cms-hero-block-modern .container > .row {
    animation: cms-fade-in-up 0.8s ease-out both;
}
.cms-hero-badge-modern {
    animation: cms-fade-in-up 0.5s ease-out both;
}
.cms-hero-title-modern {
    animation: cms-fade-in-up 0.6s ease-out 0.1s both;
}
.cms-hero-subtitle-modern {
    animation: cms-fade-in-up 0.6s ease-out 0.2s both;
}
.cms-hero-actions-modern {
    animation: cms-fade-in-up 0.6s ease-out 0.3s both;
}
.cms-hero-visual {
    animation: cms-fade-in-up 0.8s ease-out 0.15s both;
}
@media (prefers-reduced-motion: reduce) {
    .cms-hero-block-modern .container > .row,
    .cms-hero-badge-modern,
    .cms-hero-title-modern,
    .cms-hero-subtitle-modern,
    .cms-hero-actions-modern,
    .cms-hero-visual { animation: none; }
}

/* Placeholder hero: ligero efecto flotante */
@keyframes cms-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.cms-hero-placeholder-modern {
    animation: cms-float 6s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
    .cms-hero-placeholder-modern { animation: none; }
}

/* Botón CTA hero más destacado */
.cms-btn-hero {
    position: relative;
    overflow: hidden;
}
.cms-btn-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.cms-btn-hero:hover::after { left: 100%; }

/* Cards con borde sutil al hover (glow) */
.cms-card-feature:hover {
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(109, 40, 217, 0.1);
}

/* Botón CTA principal del navbar (herencia) */
.cms-btn-primary {
    background: linear-gradient(135deg, var(--cms-accent) 0%, var(--cms-accent-dark) 100%) !important;
    border: none !important;
}
.cms-btn-primary:hover {
    box-shadow: 0 10px 25px -5px rgba(109, 40, 217, 0.4) !important;
}

/* ==========================================================================
   CARTAS BONITAS - Estilo limpio y elegante
   ========================================================================== */

/* Variables: cartas blancas, sombras suaves, un solo acento (azul) */
.cms-modern {
    --cms-card-radius: 1.5rem;
    --cms-card-radius-sm: 1.25rem;
    --cms-card-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --cms-card-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.08);
    --cms-card-bg: #ffffff;
    --cms-card-border: transparent;
    --cms-accent-soft: #0ea5e9;
    --cms-accent-soft-bg: #f0f9ff;
}

/* ----- Carta base: blanca, redondeada, sombra suave ----- */
.cms-card {
    background: var(--cms-card-bg);
    border: none;
    border-radius: var(--cms-card-radius);
    padding: 2rem;
    box-shadow: var(--cms-card-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}
.cms-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--cms-card-shadow-hover);
}

/* ----- Cartas de features / categorías ----- */
.cms-section-categories {
    background: #f8fafc;
}
.cms-section-features {
    background: #ffffff;
}
.cms-card-feature {
    padding: 2.25rem 2rem;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.cms-card-feature::before {
    display: none;
}
.cms-card-feature .cms-card-icon {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
    border-radius: 1.25rem;
    margin-bottom: 1.5rem;
    background: var(--cms-accent-soft-bg);
    color: var(--cms-accent-soft);
    box-shadow: none;
    flex-shrink: 0;
}
.cms-section-categories .cms-card-feature .cms-card-icon.mx-auto,
.cms-section-features .cms-card-feature .cms-card-icon.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.cms-card-feature .cms-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.cms-card-feature .cms-card-text {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.65;
    flex-grow: 1;
}

/* ----- Cartas de estadísticas ----- */
.cms-section-stats {
    background: #f8fafc;
}
.cms-stat-card {
    border-radius: var(--cms-card-radius);
    padding: 2rem 1.5rem;
    border: none;
    box-shadow: var(--cms-card-shadow);
    background: var(--cms-card-bg);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cms-stat-card::after {
    display: none;
}
.cms-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--cms-card-shadow-hover);
}
.cms-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.35rem;
    color: var(--cms-accent-soft);
    -webkit-text-fill-color: var(--cms-accent-soft);
    background: none;
}
.cms-stat-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #64748b;
}

/* ----- Cartas de testimonios ----- */
.cms-card-testimonial {
    padding: 2.25rem;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    border: none;
}
.cms-testimonial-quote {
    font-size: 2rem;
    opacity: 0.15;
    color: #94a3b8;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.cms-testimonial-body {
    flex-grow: 1;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
}
.cms-testimonial-author {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}
.cms-testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 2px solid #f1f5f9;
    box-shadow: none;
}
.cms-testimonial-stars {
    color: #fbbf24;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}
.cms-testimonial-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0f172a;
}

/* ----- Cartas FAQ ----- */
.cms-section-faq {
    background: #f8fafc;
}
.cms-card-faq {
    padding: 2rem;
    border-left: none;
    border: none;
    transition: box-shadow 0.25s ease;
}
.cms-card-faq:hover {
    box-shadow: var(--cms-card-shadow-hover);
}
.cms-faq-question {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
    padding-right: 0;
}
.cms-faq-answer {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.65;
}

/* ----- Encabezados de sección ----- */
.cms-section-header {
    margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
    .cms-section-header { margin-bottom: 3rem; }
}
.cms-section-header .cms-section-subtitle {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: var(--cms-accent-soft);
}
.cms-section-header .cms-section-title {
    margin-bottom: 0.75rem;
    color: #0f172a;
}
.cms-section-header .cms-section-desc {
    margin-bottom: 0;
    color: #64748b;
}

/* ----- Nuestros Servicios: mismas cartas bonitas ----- */
.cms-section-services {
    background: #ffffff;
}
.cms-card-service {
    padding: 2.25rem 2rem;
    border-left: none;
    border: none;
    border-radius: var(--cms-card-radius);
    box-shadow: var(--cms-card-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cms-card-service:hover {
    transform: translateY(-3px);
    box-shadow: var(--cms-card-shadow-hover);
}
.cms-card-icon-service {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
    border-radius: 1.25rem;
    margin-bottom: 1.5rem;
    background: var(--cms-accent-soft-bg);
    color: var(--cms-accent-soft);
    box-shadow: none;
}
.cms-card-service .cms-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}
.cms-services-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

/* ----- Bloque destacado: Control de inventario ----- */
.cms-section-highlight {
    background: #f8fafc;
}
.cms-highlight-card {
    background: var(--cms-card-bg);
    border-radius: var(--cms-card-radius);
    padding: 3rem 2.5rem;
    border: none;
    box-shadow: var(--cms-card-shadow);
    transition: box-shadow 0.25s ease;
}
.cms-highlight-card:hover {
    box-shadow: var(--cms-card-shadow-hover);
}
.cms-highlight-badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cms-accent-soft);
    margin-bottom: 0.5rem;
}
.cms-highlight-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}
.cms-highlight-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.5rem;
}
.cms-highlight-icon-wrap {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cms-accent-soft-bg);
    color: var(--cms-accent-soft);
    border-radius: 1.75rem;
    font-size: 2.75rem;
    box-shadow: none;
}

/* ----- Sistema 100% completo ----- */
.cms-section-system-complete {
    background: #f8fafc;
}
.cms-system-card {
    background: var(--cms-card-bg);
    border-radius: var(--cms-card-radius);
    padding: 2rem 1.5rem;
    border: none;
    box-shadow: var(--cms-card-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}
.cms-system-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--cms-card-shadow-hover);
}
.cms-system-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cms-accent-soft-bg);
    color: var(--cms-accent-soft);
    border-radius: 1.25rem;
    font-size: 1.5rem;
}
.cms-system-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.35rem;
}
.cms-system-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

/* ----- CTA: botón outline ----- */
.cms-btn-cta-outline {
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    background: transparent !important;
    color: #fff !important;
    font-weight: 600 !important;
    border-radius: 0.75rem !important;
    padding: 0.75rem 1.5rem !important;
    transition: background 0.2s, border-color 0.2s, color 0.2s !important;
}
.cms-btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #fff !important;
    color: #fff !important;
}

/* CTA box: mantener acento pero sombra suave */
.cms-cta-box {
    border-radius: var(--cms-card-radius);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   CMS MODERN PRO+ (mejora visual SaaS sin romper el CMS)
   Pegar al FINAL del archivo.
   ========================================================================== */

/* Suavizado + layout general */
.cms-hero-block-modern .container,
.cms-section .container {
    max-width: 1140px;
}

.cms-hero-title-gradient {
    background: linear-gradient(90deg, #0f172a 0%, var(--cms-accent) 55%, var(--cms-emerald, #10b981) 110%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Pills (trust badges) */
.cms-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.25rem;
}

.cms-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    font-size: .875rem;
    padding: .45rem .75rem;
    border-radius: 999px;
    border: 1px solid rgba(2, 6, 23, .08);
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(8px);
}

.cms-pill i { opacity: .9; }
.cms-pill--accent { border-color: rgba(109, 40, 217, .25); }
.cms-pill--emerald { border-color: rgba(16, 185, 129, .25); }
.cms-pill--sky { border-color: rgba(14, 165, 233, .25); }

/* Hero más "premium" */
.cms-hero-block-modern {
    padding: 2.75rem 0 4.75rem;
}

.cms-hero-bg-modern {
    background: radial-gradient(1200px 600px at 15% 10%, rgba(109,40,217,.12), transparent 55%),
                radial-gradient(900px 520px at 88% 15%, rgba(16,185,129,.10), transparent 60%),
                linear-gradient(160deg, #f8fafc 0%, #eef2ff 35%, #ecfeff 70%, #fff7ed 100%);
}

.cms-hero-grid {
    position: absolute;
    inset: 0;
    opacity: .35;
    background-image:
        linear-gradient(rgba(2,6,23,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(2,6,23,.06) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(400px 260px at 30% 20%, #000 40%, transparent 70%);
    z-index: 0;
}

.cms-hero-card--text {
    border: 1px solid rgba(2, 6, 23, .08);
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(10px);
}

.cms-hero-card--visual {
    border: 1px solid rgba(2, 6, 23, .08);
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(10px);
}

/* Botón hero más pro */
.cms-btn-hero {
    border-radius: .75rem !important;
    padding: .85rem 1.25rem !important;
}
.cms-btn-hero-outline {
    border-radius: .75rem !important;
    padding: .85rem 1.25rem !important;
}

/* Mock de App (cuando no hay imagen) */
.cms-hero-mock {
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(2,6,23,.10);
    background: rgba(255,255,255,.85);
    box-shadow: 0 30px 80px -40px rgba(2, 6, 23, .35);
}

.cms-hero-mock__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 1rem;
    background: linear-gradient(180deg, rgba(248,250,252,.95), rgba(241,245,249,.75));
    border-bottom: 1px solid rgba(2,6,23,.08);
}

.cms-hero-mock__dots {
    display: inline-flex;
    gap: .35rem;
}
.cms-hero-mock__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(2,6,23,.18);
}
.cms-hero-mock__dot:nth-child(1){ background: rgba(239,68,68,.55); }
.cms-hero-mock__dot:nth-child(2){ background: rgba(245,158,11,.55); }
.cms-hero-mock__dot:nth-child(3){ background: rgba(16,185,129,.55); }

.cms-hero-mock__title {
    font-weight: 800;
    font-size: .95rem;
    color: #0f172a;
    opacity: .9;
}

.cms-hero-mock__body {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 360px;
}

.cms-hero-mock__sidebar {
    padding: 1rem;
    border-right: 1px solid rgba(2,6,23,.08);
    background: linear-gradient(180deg, rgba(248,250,252,.95), rgba(255,255,255,.75));
}

.cms-hero-mock__navitem {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .6rem .7rem;
    border-radius: .75rem;
    color: #334155;
    font-weight: 600;
    font-size: .9rem;
}

.cms-hero-mock__navitem--active {
    background: rgba(109,40,217,.10);
    color: var(--cms-accent-dark);
}

.cms-hero-mock__main {
    padding: 1rem;
}

.cms-hero-mock__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
    margin-bottom: .9rem;
}

.cms-hero-mock__card {
    border: 1px solid rgba(2,6,23,.08);
    border-radius: 1rem;
    background: rgba(255,255,255,.9);
    padding: .9rem;
}

.cms-hero-mock__kpi {
    font-weight: 900;
    font-size: 1.35rem;
    color: #0f172a;
    line-height: 1.1;
}
.cms-hero-mock__label {
    margin-top: .25rem;
    color: #64748b;
    font-weight: 600;
    font-size: .85rem;
}

.cms-hero-mock__chart {
    border: 1px solid rgba(2,6,23,.08);
    border-radius: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,.9);
}

.cms-hero-mock__bars {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: .35rem;
    align-items: end;
    height: 120px;
    margin-top: .75rem;
}

.cms-hero-mock__bar {
    border-radius: .5rem;
    background: linear-gradient(180deg, rgba(109,40,217,.20), rgba(109,40,217,.70));
}
.cms-hero-mock__bar:nth-child(3n) {
    background: linear-gradient(180deg, rgba(16,185,129,.18), rgba(16,185,129,.70));
}
.cms-hero-mock__bar:nth-child(4n) {
    background: linear-gradient(180deg, rgba(14,165,233,.18), rgba(14,165,233,.70));
}

/* Responsive mock */
@media (max-width: 991.98px) {
    .cms-hero-mock__body { grid-template-columns: 1fr; }
    .cms-hero-mock__sidebar { display: none; }
}

/* CTA más pro */
.cms-section-cta .cms-cta-box {
    border-radius: 1.25rem;
    border: 1px solid rgba(255,255,255,.18);
    background: linear-gradient(135deg, #0f172a 0%, #1f1b4d 40%, var(--cms-accent) 100%);
    box-shadow: 0 40px 90px -50px rgba(2,6,23,.75);
}

.cms-section-cta .cms-cta-title,
.cms-section-cta .cms-cta-desc {
    color: #fff;
}

.cms-btn-cta, .cms-btn-cta-outline {
    border-radius: .85rem !important;
    padding: .85rem 1.15rem !important;
}

/* ==========================================================================
   HOME MODERN THEME (solo dentro de .cms-home-page: fondo, hero, mock)
   ========================================================================== */

/* Fondo general de la home: gradiente + orbes (no blanco) */
.cms-home-page {
    background: linear-gradient(180deg, #f1f5f9 0%, #eef2ff 25%, #ecfeff 50%, #f0fdf4 75%, #f8fafc 100%);
    min-height: 100%;
}

.cms-home-page .cms-home-hero {
    position: relative;
    overflow: hidden;
}

.cms-home-page .cms-hero-bg-modern {
    background: radial-gradient(1200px 600px at 15% 10%, rgba(109,40,217,.14), transparent 55%),
                radial-gradient(900px 520px at 88% 15%, rgba(16,185,129,.12), transparent 60%),
                linear-gradient(160deg, #f8fafc 0%, #eef2ff 38%, #ecfeff 72%, #fff7ed 100%);
}

.cms-home-page .cms-hero-grid {
    opacity: .4;
    background-size: 52px 52px;
    mask-image: radial-gradient(400px 260px at 30% 20%, #000 40%, transparent 70%);
}

/* Tarjetas hero en home */
.cms-home-page .cms-hero-card--text {
    border: 1px solid rgba(2, 6, 23, .08);
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .06);
}

.cms-home-page .cms-hero-card--visual {
    border: 1px solid rgba(2, 6, 23, .08);
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .06);
}

/* Mock de app: asegurar que siempre tenga estilos (no texto crudo) */
.cms-home-page .cms-hero-mock {
    display: block;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(2,6,23,.12);
    background: rgba(255,255,255,.9);
    box-shadow: 0 30px 80px -40px rgba(2, 6, 23, .4);
}

.cms-home-page .cms-hero-mock__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 1rem;
    background: linear-gradient(180deg, rgba(248,250,252,.98), rgba(241,245,249,.8));
    border-bottom: 1px solid rgba(2,6,23,.08);
}

.cms-home-page .cms-hero-mock__dots {
    display: inline-flex;
    gap: .35rem;
}

.cms-home-page .cms-hero-mock__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(2,6,23,.18);
}

.cms-home-page .cms-hero-mock__dot:nth-child(1) { background: rgba(239,68,68,.55); }
.cms-home-page .cms-hero-mock__dot:nth-child(2) { background: rgba(245,158,11,.55); }
.cms-home-page .cms-hero-mock__dot:nth-child(3) { background: rgba(16,185,129,.55); }

.cms-home-page .cms-hero-mock__title {
    font-weight: 800;
    font-size: .95rem;
    color: #0f172a;
    opacity: .9;
}

.cms-home-page .cms-hero-mock__body {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 360px;
}

.cms-home-page .cms-hero-mock__sidebar {
    display: block;
    padding: 1rem;
    border-right: 1px solid rgba(2,6,23,.08);
    background: linear-gradient(180deg, rgba(248,250,252,.98), rgba(255,255,255,.8));
}

.cms-home-page .cms-hero-mock__navitem {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .6rem .7rem;
    border-radius: .75rem;
    color: #334155;
    font-weight: 600;
    font-size: .9rem;
}

.cms-home-page .cms-hero-mock__navitem--active {
    background: rgba(109,40,217,.12);
    color: var(--cms-accent-dark);
}

.cms-home-page .cms-hero-mock__main {
    display: block;
    padding: 1rem;
}

.cms-home-page .cms-hero-mock__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
    margin-bottom: .9rem;
}

.cms-home-page .cms-hero-mock__card {
    display: block;
    border: 1px solid rgba(2,6,23,.08);
    border-radius: 1rem;
    background: rgba(255,255,255,.95);
    padding: .9rem;
}

.cms-home-page .cms-hero-mock__kpi {
    font-weight: 900;
    font-size: 1.35rem;
    color: #0f172a;
    line-height: 1.1;
}

.cms-home-page .cms-hero-mock__label {
    margin-top: .25rem;
    color: #64748b;
    font-weight: 600;
    font-size: .85rem;
}

.cms-home-page .cms-hero-mock__chart {
    display: block;
    border: 1px solid rgba(2,6,23,.08);
    border-radius: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,.95);
}

.cms-home-page .cms-hero-mock__bars {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: .35rem;
    align-items: end;
    height: 120px;
    margin-top: .75rem;
}

.cms-home-page .cms-hero-mock__bar {
    display: block;
    border-radius: .5rem;
    background: linear-gradient(180deg, rgba(109,40,217,.22), rgba(109,40,217,.72));
}

.cms-home-page .cms-hero-mock__bar:nth-child(3n) {
    background: linear-gradient(180deg, rgba(16,185,129,.2), rgba(16,185,129,.72));
}

.cms-home-page .cms-hero-mock__bar:nth-child(4n) {
    background: linear-gradient(180deg, rgba(14,165,233,.2), rgba(14,165,233,.72));
}

@media (max-width: 991.98px) {
    .cms-home-page .cms-hero-mock__body {
        grid-template-columns: 1fr;
    }
    .cms-home-page .cms-hero-mock__sidebar {
        display: none;
    }
}

/* Secciones en home: mejor spacing */
.cms-home-page .cms-section {
    padding: 2.75rem 0;
}

@media (min-width: 768px) {
    .cms-home-page .cms-section { padding: 3.5rem 0; }
}

@media (min-width: 992px) {
    .cms-home-page .cms-section { padding: 4.5rem 0; }
}

/* ==========================================================================
   CMS FRONTEND THEME (GLOBAL) - PUBLIC MODERN THEME
   Solo dentro de .cms-public-page / .cms-frontend - aplica a Inicio, Precios, Contacto, Páginas, Blogs
   ========================================================================== */

.cms-public-page,
.cms-frontend {
    min-height: 100%;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 20%, #eef2ff 45%, #ecfeff 70%, #f0fdf4 85%, #f8fafc 100%);
}

/* Tipografía base */
.cms-public-page h1, .cms-frontend h1, .cms-public-page .h1, .cms-frontend .h1 {
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a;
}
.cms-public-page h2, .cms-frontend h2, .cms-public-page .h2, .cms-frontend .h2 {
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
}
.cms-public-page p, .cms-frontend p {
    line-height: 1.65;
    color: #334155;
}

/* Secciones: padding consistente */
.cms-public-page .cms-section, .cms-frontend .cms-section {
    padding: 2.5rem 0;
}
@media (min-width: 768px) {
    .cms-public-page .cms-section, .cms-frontend .cms-section { padding: 3.5rem 0; }
}
@media (min-width: 992px) {
    .cms-public-page .cms-section, .cms-frontend .cms-section { padding: 4rem 0; }
}

/* Hero block (home y páginas con hero) */
.cms-public-page .cms-hero-block, .cms-frontend .cms-hero-block {
    position: relative;
    overflow: hidden;
}
.cms-public-page .cms-hero-wave, .cms-frontend .cms-hero-wave {
    pointer-events: none;
}
.cms-public-page .cms-hero-wave svg, .cms-frontend .cms-hero-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Cards: semi-transparente, border, shadow, blur */
.cms-public-page .card, .cms-frontend .card,
.cms-public-page .cms-card, .cms-frontend .cms-card {
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(2, 6, 23, .08);
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
    backdrop-filter: blur(8px);
}
.cms-public-page .card:hover, .cms-frontend .card:hover,
.cms-public-page .cms-card:hover, .cms-frontend .cms-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

/* Navbar glass (está fuera de .cms-frontend pero el contenedor fixed está en body) */
body.cms-modern .cms-nav-modern-wrap.cms-nav-glass {
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
}

/* Botones en frontend */
.cms-public-page .btn, .cms-frontend .btn {
    border-radius: 0.5rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cms-public-page .btn:hover, .cms-frontend .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
}
.cms-frontend .btn-primary,
.cms-frontend .cms-btn-primary {
    border-radius: 0.5rem;
}

/* Blog listado: cards modernas */
.cms-public-page .cms-blog-card, .cms-frontend .cms-blog-card {
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(2, 6, 23, .08);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
    transition: transform 0.2s, box-shadow 0.2s;
}
.cms-public-page .cms-blog-card:hover, .cms-frontend .cms-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
}
.cms-frontend .cms-blog-card__img-wrap {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
}
.cms-public-page .cms-blog-card .btn-sm, .cms-frontend .cms-blog-card .btn-sm {
    border-radius: 0.5rem;
    font-weight: 600;
}

/* Blog detalle: contenido en card */
.cms-frontend .article-block,
.cms-frontend .cms-article-wrap {
    padding: 2rem 0 4rem;
}
.cms-public-page .cms-article-card, .cms-frontend .cms-article-card {
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(2, 6, 23, .08);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
}
.cms-frontend .cms-article-header-img-wrap {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

/* Contacto: form en card */
.cms-public-page .contact-form-wrap, .cms-frontend .contact-form-wrap,
.cms-public-page .block-27, .cms-frontend .block-27 {
    padding: 2rem 0 4rem;
}
.cms-frontend .contact-form,
.cms-frontend .block-27 .container .row {
    max-width: 100%;
}
.cms-public-page .contact-form__header, .cms-frontend .contact-form__header,
.cms-public-page .contact-form .form-control, .cms-frontend .contact-form .form-control,
.cms-public-page .contact-form__input, .cms-frontend .contact-form__input {
    border-radius: 0.5rem;
}
.cms-frontend #contact_form .btn {
    border-radius: 0.5rem;
    font-weight: 600;
}

/* Contenido de página/blog (custom_view y blog show) */
.cms-public-page .cms-page-content, .cms-frontend .cms-page-content {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #334155;
}
.cms-public-page .cms-page-content h2, .cms-frontend .cms-page-content h2 { font-size: 1.375rem; font-weight: 700; color: #0f172a; margin-top: 2rem; margin-bottom: 0.75rem; }
.cms-public-page .cms-page-content h3, .cms-frontend .cms-page-content h3 { font-size: 1.125rem; font-weight: 600; color: #0f172a; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.cms-public-page .cms-page-content p, .cms-frontend .cms-page-content p { margin-bottom: 1rem; }
.cms-public-page .cms-page-content img, .cms-frontend .cms-page-content img { max-width: 100%; height: auto; border-radius: 0.5rem; }

/* Empty state (no blogs, etc.) */
.cms-public-page .rounded-3[style*="background"], .cms-frontend .rounded-3[style*="background"],
.cms-public-page .text-center.py-5.px-4.rounded-3, .cms-frontend .text-center.py-5.px-4.rounded-3 {
    background: rgba(255, 255, 255, .85) !important;
    border: 1px solid rgba(2, 6, 23, .08) !important;
    backdrop-filter: blur(8px);
}
