﻿/* styles.css */
/* reset y global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Space Grotesk", sans-serif;
    color: #141414;
    background: #fff;
    line-height: 1.5;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: visible; /* <- permitir que se muestre el footer */
}

/* 2. Viewport de DevExtreme full-height */
.dx-viewport {
    height: 100%;
}

/* 3. Encadena los flex-containers full-height */
.layout-body,
.dx-drawer-content,
#layout-drawer-scrollview.with-footer {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden; /* limitar el scroll interno más abajo */
}

    /* 4. Sólo .content scroll interno cuando haga falta */
    #layout-drawer-scrollview.with-footer .content {
        flex: 1 1 auto;
        overflow-y: auto;
    }

    /* 5. El footer siempre visible al final */
    #layout-drawer-scrollview.with-footer .modern-footer {
        flex: 0 0 auto;
        margin-top: auto;
    }

/* utilitarios */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}


.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

.btn--primary {
    background: #ffd803;
    color: #141414;
}

.btn--outline {
    background: transparent;
    border: 1px solid rgba(20,20,20,0.1);
    color: #141414;
    background: #ffd803;
}

.content-charts {
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px; /* O el ancho máximo que prefieras */
}

.charts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around; /* Asegura que haya espacio alrededor de cada gráfico */
}

.charts {
    flex: 1 1 calc(40% - 10px); /* 20% más pequeño que 50% */
    margin: 5px; /* Añade un pequeño margen alrededor de cada gráfico */
    max-width: calc(40% - 10px); /* Límite máximo para el ancho, ajusta según sea necesario */
    box-sizing: border-box; /* Asegura que el padding y border estén incluidos en el ancho */
}


.export-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .charts {
        flex: 0 0 100%; /* Cada gráfico toma el ancho completo en pantallas pequeñas */
        max-width: 100%; /* Establece un límite máximo del 100% para pantallas pequeñas */
    }
}

/* HEADER */
.header {
    padding: 1rem 0;
    transform: translateY(-100%);
    transition: transform 0.6s ease-out;
    background: #ffff;
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav a {
    color: inherit;
    text-decoration: none;
}

/* HERO */
.hero {
    padding: 4rem 0;
    background: #e3f6f5;
}

.hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.hero__text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero__text p {
    font-size: 1.125rem;
    max-width: 600px;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.hero__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.graphic__placeholder {
    width: 100%;
    max-width: 500px;
    height: 350px;
    background: #e3f6f5;
    border-radius: 1rem;
}

/* sección de pasos 1 2 y 3 */

/* Contenedor principal */
.steps-container {
    width: 1536px;
    height: 294px;
    position: relative;
    background: #ffffff;
    margin-bottom: 4rem;
}

/* Contenedor interno */
.steps-inner {
    width: 1296px;
    height: 198px;
    position: absolute;
    left: 120px;
    top: 96px;
}

/* Wrapper de las tarjetas */
.steps-wrapper {
    width: 1248px;
    height: 198px;
    position: absolute;
    left: 24px;
    top: 0;
}

/* Cada tarjeta de paso */
.step-card {
    position: absolute;
    top: 0;
    width: 327px;
    height: 198px;
    font-family: 'Space Grotesk', sans-serif;
}

/* Posición horizontal de cada tarjeta */
.step-1 {
    left: 36.5px;
}

.step-2 {
    left: 460.5px;
}

.step-3 {
    left: 884.5px;
}

/* Centrado genérico de icono, título y descripción */
.step-card .step-icon,
.step-card .step-title,
.step-card .step-desc {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Icono */
.step-card .step-icon {
    top: 0;
    width: 72px;
    height: 72px;
    border-radius: 8px;
}

.step-1 .step-icon {
    background: #BAE8E8;
}

.step-2 .step-icon {
    background: #FFD803;
}

.step-3 .step-icon {
    background: #392396;
}

/* Título */
.step-card .step-title {
    top: 95.8px;
    color: #141414;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    white-space: nowrap;
}

/* Descripción */
.step-card .step-desc {
    top: 143.6px;
    width: 327px;
    text-align: center;
    color: #141414;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

/* Números de paso */
.step-number {
    position: absolute;
    top: 20.8px;
    color: #141414;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}

.step-number-1 {
    left: 218.74px;
}

.step-number-2 {
    left: 641.17px;
}

.step-number-3 {
    left: 1065.12px;
    color: #ffffff;
}

/*Pricing de landing page*/

/* pricing.css */

/* 1) Sección completa */
.pricing-section {
    background: #E3F6F5;
    border-radius: 16px;
    padding: 48px 24px;
    max-width: 1248px;
    margin: auto;
}

/* 2) Wrapper con fondo y padding */
.pricing-wrapper {
    background: #E3F6F5;
    border-radius: 16px;
    padding: 48px 24px;
    max-width: 1248px;
    margin: 0 auto;
}

/* 3) Contenedor de las tarjetas */
.pricing-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
}

/* 4) Cada plan */
.plan {
    background: white;
    border-radius: 8px;
    padding: 24px;
    width: 250px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* 5) Badge */
.plan__badge {
    background: #BAE8E8;
    border-radius: 16px;
    padding: 4px 12px;
    font: 700 16px/24px 'Space Grotesk', sans-serif;
    color: #141414;    
    text-align: center;
}

/* 6) Subtítulo */
.plan__subtitle {
    font: 400 16px/24px 'Space Grotesk', sans-serif;
    color: #141414;
    margin-bottom: 24px;    
    text-align: center;
}

/* 7) Precio */
.plan__price {
    font: 800 26px/26px 'Space Grotesk', sans-serif;
    color: #141414;
    margin: 0;
    position: relative;
}


.plan__period {
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
    margin-left: 4px;
    vertical-align: super;
}

/* 8) Lista de características con bullet circles */
.plan__features {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    font: 400 16px/24px 'Space Grotesk', sans-serif;
    color: #141414;
}

.plan__features li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 12px;
    font: 400 16px/24px 'Space Grotesk', sans-serif;
    color: #141414;
    text-align: left;
}

.plan__features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 4px);
    width: 8px;
    height: 8px;
    background: #392396;
    border-radius: 50%;
}

/* 9) Call to action */
.pricing-cta {
    text-align: center;
    margin-top: 40px;
}

.btn--primary {
    background: #392396;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font: 600 16px/24px 'IBM Plex Mono', monospace;
    cursor: pointer;
}

.pricing-note {
    font: 400 14px/22px 'IBM Plex Mono', monospace;
    color: #141414;
    margin-top: 12px;
}

/* 1) Hacemos que el <label> apile sus hijos en columna */
.plan label {
    display: flex;
    flex-direction: column;
    align-items: center; /* o flex-start si los quieres alineados a la izquierda */
}

/* 2) Forzamos que badge, subtitle y price sean block‑level para que ocupen línea propia */
.plan__badge,
.plan__subtitle,
.plan__price {
    display: block;
    width: 100%; /* opcional: para que ocupen todo el ancho */
    text-align: center; /* conserva el centrado del texto */
    margin-bottom: 16px; /* separa cada elemento del siguiente */
}

/* 3) Si no quieres margin‑bottom en el último, por ejemplo: */
.plan__price {
    margin-bottom: 24px; /* ajusta según tu diseño */
}

.plan__header {
    display: flex;
    align-items: center;
    gap: 8px; /* espacio entre radio y badge */
    margin-bottom: 16px; /* separa del resto del contenido */
}

.plan__header input[type="radio"] {
    /* Agrandar el círculo del radio */
    transform: scale(1.5);
    /* Ajustar el origen de la transformación para que crezca hacia afuera */
    transform-origin: left center;
    /* Un poco de margen para separar del badge */
    margin-right: 8px;
    margin-bottom: 8px;
    /* Opcional: si quieres controlar el color del círculo en navegadores modernos */
    accent-color: #392396;
}
/* FOOTER */
.footer {
    padding: 3rem 0;
    background: #141414;
    color: #fff;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

    .footer__nav h4 {
        margin-bottom: 0.75rem;
    }

    .footer__nav ul {
        list-style: none;
    }

    .footer__nav li {
        opacity: 0.8;
        margin-bottom: 0.5rem;
    }

.footer__credits {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.875rem;
}

/* MEDIA QUERIES */
@media (min-width: 768px) {
    .hero__inner {
        flex-direction: row;
        text-align: left;
        align-items: center;
        justify-content: space-between;
    }

    .hero__text, .hero__graphic {
        flex: 1;
    }

    .hero__text {
        max-width: 50%;
    }

    .hero__graphic {
        max-width: 45%;
    }

    .footer__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}
/* --- Sección de Features centrada y responsive --- */
.features-grid {
    background: #fff;
    padding: 4rem 0;
}

.features-grid__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .features-grid__inner {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    /* opcional: agregar padding interno si lo deseas */
    /* padding: 1rem; */
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icono 1: outline de 2px #392396 sobre 36×36 */
.icon--blocks {
    width: 36px;
    height: 36px;
    border: 2px solid #392396;
}

/* Icono 2: bloque sólido 38×46 de color #392396 */
.icon--cms {
    width: 38px;
    height: 46px;
    background: #392396;
}

/* Icono 3: outline de 2px #392396 sobre 40×24 */
.icon--ui {
    width: 40px;
    height: 24px;
    border: 2px solid #392396;
}

.feature-card__title {
    font-size: 1.5rem; /* 24px */
    line-height: 1.875rem; /* 30px */
    font-weight: 700;
    color: #141414;
    margin-top: 1rem;
}

.feature-card__desc {
    font-size: 1rem; /* 16px */
    line-height: 1.5rem; /* 24px */
    color: #141414;
    margin-top: 0.5rem;
}

/* FOOTER */
.footer {
    background: #141414;
    color: #fff;
    padding: 4rem 0;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

/* Columnas */
.footer__col {
    flex: 1 1 100%;
}

/* Títulos de columna */
.footer__heading {
    font-size: 2rem; /* 32px */
    line-height: 1.125; /* 36px */
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    margin-bottom: 1rem;
}

/* Listado de enlaces/texto */
.footer__list {
    list-style: none;
    padding: 0;
}

.footer__list li {
    font-size: 1rem; /* 16px */
    line-height: 1.5; /* 24px */
    font-weight: 400;
    font-family: "Space Grotesk", sans-serif;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.75rem;
}

/* Créditos */
.footer__credits {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.875rem; /* 14px */
    line-height: 1.571; /* 22px */
    font-weight: 400;
    opacity: 0.8;
    margin-top: 2rem;
}

/* MEDIA QUERIES */
@media (min-width: 768px) {
    .footer__inner {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        flex-wrap: wrap;
    }

    .footer__col {
        flex: 1 1 16%; /* Cinco columnas iguales */
    }

    .footer__credits {
        flex: 1 1 100%;
        text-align: center;
    }
}

/* Sección de métricas */
.stats {
    background: #E3F6F5;
    padding: 4rem 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    text-align: center;
}

/* Tarjetas */
.stat-card {
    background: #BAE8E8;
    border-radius: 8px;
    padding: 2rem;
}

/* Valor principal */
.stat-card__value {
    font-family: "Space Grotesk", sans-serif;
    font-size: 3.375rem; /* 54px */
    line-height: 54px;
    font-weight: 700;
    color: #141414;
    margin: 0;
}

/* Descripción */
.stat-card__desc {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem; /* 16px */
    line-height: 1.5rem; /* 24px */
    font-weight: 400;
    color: #141414;
    margin-top: 0.75rem;
}

/* Ajustes responsivos opcionales */
@media (max-width: 480px) {
    .stats__grid {
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }
}

/* Sección de introducción larga */
.intro-long {
    background: #E3F6F5;
    padding: 4rem 0;
}

.intro-long__inner {
    max-width: 612px; /* coincide con tu ancho original */
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.intro-long__title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 3.375rem; /* 54px */
    line-height: 1; /* 54px */
    font-weight: 700;
    color: #141414;
    margin-bottom: 1.5rem;
}

.intro-long__subtitle {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem; /* 20px */
    line-height: 1.5; /* 30px */
    font-weight: 400;
    color: #141414;
    margin: 0;
}

/* Ajuste móvil opcional */
@media (max-width: 480px) {
    .intro-long__title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .intro-long__subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
}

@font-face {
    font-family: 'Unicons';
    src: url('/fonts/unicons-line.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Aplicación global */
body {
    font-family: 'FigtreeLight', sans-serif;
    margin: 0;
    padding: 0;
}

.header__inner {
    display: flex;
    align-items: center;
}

/* Empuja el botón “Ingresar” a la derecha */
.header__inner > .btn--outline {
    margin-left: auto;
}

.main-content {
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.6s ease-out 0.3s, opacity 0.4s ease-out 0.3s;
}

/* Estado “entrando” */
.header.enter {
    transform: translateY(0);
}

.main-content.enter {
    transform: translateY(0);
    opacity: 1;
}

/* Contenedor del gráfico */
.hero__graphic {
    max-width: 100%; /* No sobrepasa el ancho del contenedor padre */
    margin: 0 auto; /* Centrado horizontal */
    padding: 1rem 0; /* Espaciado superior e inferior */
    text-align: center; /* Por si quieres centrarlo */
}

/* Imagen responsive */
.hero__graphic .hero__image {
    display: inline-block;
    width: 100%;
    height: auto;
    max-width: 600px; /* O el ancho máximo que quieras */
    border-radius: 8px; /* Si quieres un borde redondeado */
}
.nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

/* En móviles apila verticalmente */
@media (max-width: 767px) {
    .header__inner {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav {
        width: 100%;
    }

        .nav ul {
            flex-direction: column;
            gap: 1rem;
            padding: 1rem 0;
        }
    /* Ajustar alineación de logo y botón */
    .navbar-brand {
        flex: 1 1 100%;
    }

    .header__inner > .btn--outline {
        flex: 1 1 100%;
        text-align: center;
    }
}

/*estilos de forma de cambio de contraseña y crear usuario*/
.form-container {
    max-width: 400px;
    margin: auto;
    margin-top: 30px; /* Ajuste para el margen superior */
    padding-bottom: 20px; /* Espacio adicional en la parte inferior si es necesario */    
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .form-container {
        margin: 10px;
    }
}

.form-registro-container {
    max-width: 800px;
    margin: auto;
    margin-top: 30px; /* Ajuste para el margen superior */
    padding-bottom: 20px; /* Espacio adicional en la parte inferior si es necesario */
}

.button-container {
    text-align: center; /* Centra el botón dentro del contenedor */
    margin-top: 20px; /* Espacio adicional encima del botón si es necesario */
    margin-bottom: 20px; /* Espacio adicional encima del botón si es necesario */
    padding-left: 20px;
}

.button-container .dx-button {
    margin: 0 8px; /* 8px a izquierda y derecha */
}

/*sección marcus*/

/* styles.css (añádelo al final o en tu archivo de secciones) */

/* Sección wrapper */
/* Sección “Premios Vía” (combine-section-white): mantiene el layout original con posicionamiento absoluto */

/* Wrapper con fondo blanco */
.combine-section-white {
    background: #ffffff;
    padding: 96px 0;
}

/* Contenedor principal absoluto */
.combine-section-white .combine-container {
    position: relative;
    width: 1296px;
    height: 429.52px;
    margin: 0 auto;
}

/* Texto absolutamente posicionado */
.combine-section-white .combine-text {
    position: absolute;
    left: 24px;
    top: 40px;
    width: 506px;
}

.combine-section-white .combine-text h2 {
    margin: 0;
    font: 700 44px/44px 'Space Grotesk', sans-serif;
    color: #141414;
}

.combine-section-white .combine-text p {
    position: absolute;
    left: 0;
    top: 100px;
    margin: 0;
    font: 400 20px/30px 'Space Grotesk', sans-serif;
    color: #141414;
}

/* Imagen absolutamente posicionada */
.combine-section-white .combine-image {
    position: absolute;
    left: 660px;
    top: 0;
    width: 612px;
    height: 429.52px;
}

.combine-section-white .combine-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 612px;
    height: 429.52px;
    border-radius: 16px;
}

/* Caption e iconos igual que antes */
.combine-section-white .image-caption {
    position: absolute;
    left: 24px;
    top: 347.52px;
    width: 304.8px;
    height: 58px;
    background: #141414;
    border-radius: 8px;
}

.combine-section-white .image-caption p {
    position: absolute;
    left: 18px;
    top: 17.8px;
    margin: 0;
    font: 400 14px/22px 'IBM Plex Mono', monospace;
    color: #ffffff;
    }

.combine-section-white .feature-icon {
    position: absolute;
    width: 72px;
    height: 72px;
}

.combine-section-white .icon-left {
    left: -30.76px;
    top: 36px;
}

.combine-section-white .icon-right {
    left: 576px;
    top: 321.52px;
}

.combine-section-white .icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 72px;
    height: 72px;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.10);
    background: #FFD803;
}

.combine-section-white .icon-right .icon-bg {
    background: #392396;
}

/* Recorte y forma interna */
.combine-section-white .icon-clip {
    position: absolute;
    left: 18px;
    top: 18px;
    width: 36px;
    height: 36px;
    overflow: hidden;
}

.combine-section-white .icon-clip-inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    overflow: hidden;
}

.combine-section-white .icon-left .icon-shape {
    position: absolute;
    left: 3.5px;
    top: 0.5px;
    width: 29px;
    height: 35px;
    background: #141414;
}

.combine-section-white .icon-right .icon-shape {
    position: absolute;
    left: 3px;
    top: 9px;
    width: 30px;
    height: 18px;
    outline: 2px solid #ffffff;
    outline-offset: -1px;
    background: transparent;
}


/* Sección “Marcus choque simple” (combine-section): layout invertido usando flexbox */

/* Wrapper con fondo turquesa */
.combine-section {
    background: #E3F6F5;
    padding: 96px 0;
}

    /* Contenedor convertido a flex y orden invertido */
.combine-section .combine-container {
    display: flex;
    flex-direction: row-reverse; /* imagen a la izquierda, texto a la derecha */
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1296px;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    height: auto;
}

/* Texto en flujo normal */
.combine-section .combine-text {
    flex: 0 0 45%;
    position: relative;
}

.combine-section .combine-text h2 {
    margin: 0 0 20px;
    font: 700 44px/44px 'Space Grotesk', sans-serif;
    color: #141414;
}

.combine-section .combine-text p {
    margin: 0;
    font: 400 20px/30px 'Space Grotesk', sans-serif;
    color: #141414;
}

/* Imagen en flujo normal */
.combine-section .combine-image {
    flex: 0 0 50%;
    position: relative;
}

.combine-section .combine-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Caption e iconos sobre la imagen */
.combine-section .image-caption {
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: 10px 16px;
    background: #141414;
    border-radius: 8px;
}

    .combine-section .image-caption p {
        margin: 0;
        font: 400 14px/22px 'IBM Plex Mono', monospace;
        color: #ffffff;
    }

.combine-section .feature-icon {
    position: absolute;
    width: 72px;
    height: 72px;
}

.combine-section .icon-left {
    left: -36px;
    top: 36px;
}

.combine-section .icon-right {
    right: -36px;
    bottom: 36px;
}

.combine-section .icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 72px;
    height: 72px;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.10);
    background: #FFD803;
}

.combine-section .icon-right .icon-bg {
    background: #392396;
}

.combine-section .icon-clip {
    position: absolute;
    left: 18px;
    top: 18px;
    width: 36px;
    height: 36px;
    overflow: hidden;
}

.combine-section .icon-clip-inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    overflow: hidden;
}

.combine-section .icon-left .icon-shape {
    position: absolute;
    left: 3.5px;
    top: 0.5px;
    width: 29px;
    height: 35px;
    background: #141414;
}

.combine-section .icon-right .icon-shape {
    position: absolute;
    left: 3px;
    top: 9px;
    width: 30px;
    height: 18px;
    outline: 2px solid #ffffff;
    outline-offset: -1px;
    background: transparent;
}

/*resultado registro*/

.formresultado-container {
    max-width: 400px;
    margin: auto;
    margin-top: 30px; /* Ajuste para el margen superior */
    padding-bottom: 20px; /* Espacio adicional en la parte inferior si es necesario */
}
.import-container.compact {
    max-width: 500px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.import-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px; /* Ajusta según sea necesario */
}

.import-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0; /* Quita el margen por defecto del h2 */
    padding-left: 10px; /* Espaciado entre el ícono y el título */
}

.success-icon {
    color: #4CAF50; /* Color verde para indicar éxito */
    font-size: 30px; /* Ajusta el tamaño del ícono según sea necesario */
}

/*Toolbar*/
.logo-css {
    width: 100px;
    height: 70px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url('../images/logoguia.png');
}

@media (max-width: 767px) {
    .logo-css {
        width: 50px; /* o ajusta a 100px si quieres aún más pequeño */
        height: 40px;
        background-image: url('../images/logoguia.png');
    }
}

.menu-button {
    order: -1;
    width: 100%;
    justify-content: center;
}

.dx-toolbar .dx-toolbar-item.menu-button > .dx-toolbar-item-content .dx-button-text {
    padding: 0;
    color: #141414;
    text-transform: none;
}

.dx-toolbar .dx-toolbar-item.menu-button > .dx-toolbar-item-content .dx-icon {
    color: #141414;
}

#app-side-nav-outer-toolbar {
    flex-direction: column;
    display: flex;
    height: 100%;
    width: 100%;
}

.layout-header {
    flex: 0 0 auto;
    box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.12), 0 4px 4px -4px rgba(0, 0, 0, 0.24);
    position: relative;
    z-index: 1501;
    padding: 1rem 0;
    background: #ffff;
}

#toolapp {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: auto;
    padding: 0;
    background-color: transparent;
    display: flex;
    align-items: center;
}


.dx-toolbar .dx-toolbar-item.menu-button > .dx-toolbar-item-content .dx-button-text {
    padding: 0;
    color: #141414;
    text-transform: none;
}

.label-logo {
    color: #141414;
    font-weight: 700 !important;
    font-size: 24pt !important;
}

.label-correo {
    color: #141414;
    font-weight: 300 !important;
    font-size: 10pt !important;    
    padding-right: 10px;
}

.label-white-compania {
    color: #141414;
    text-align: center;
    font-weight: 300 !important;
    font-size: 10pt !important;
    padding: 0px;
}
    /*Layout */
.with-footer > div > div > .dx-scrollable-content {
    height: 100%;
}

.with-footer > div > div > .dx-scrollable-content > .dx-scrollview-content {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.with-footer .dx-scrollview-content .content {
    flex: 1 0 auto;
}

.with-footer .modern-footer {
    flex-shrink: 0;
    margin-top: auto;
}

.dx-drawer-content {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    overflow: hidden;
}




.layout-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.layout-body .menu-container {
    height: 100%;
    width: 280px;
    background-color: #f6fdfc;
}

.layout-body .content {
    flex-grow: 1;
    height: 100%;
    line-height: 1.5;
}

.layout-body .content h2 {
    font-size: 30px;
    font-weight: 300;
    letter-spacing: -.5px;
}

.layout-body .content-block {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
}

.layout-body .content-footer {
    display: block;
    color: white;
    border-top: none;
    padding-top: 7px; /* Reducido un 10% adicional, de 10px a 9px */
    padding-bottom: 9px; /* Reducido un 10% adicional, de 12px a 11px */
}

#footer {
    text-align: right; /* Cambiado de center a left */
    font-size: 0.9em;
    line-height: 1.2;
    padding-right: 20px; /* Añadido para dar un poco de espacio desde el borde derecho */
}

.layout-body .responsive-paddings {
    padding: 20px;
}

.layout-body-hidden {
    visibility: hidden;
}


@media screen and (min-width: 600px) {
    .layout-body .content-block {
        margin-left: 40px;
        margin-right: 40px;
    }
}

@media screen and (min-width: 1280px) {
    .layout-body .responsive-paddings {
        padding: 40px;
    }
}

.menu-container {
    background: #f6fdfc;
}

.menu-container .dx-widget {
    font-size: 13px;
    font-family: Roboto,RobotoFallback,Helvetica,Arial,sans-serif;
    line-height: 24px;
}

.menu-container .dx-treeview {
    white-space: nowrap;
}

.menu-container .dx-treeview .dx-treeview-item {
    padding-left: 0;
    padding-right: 0;
}

    .menu-container .dx-treeview .dx-treeview-item .dx-icon {
        width: 60px !important;
        margin: 0 !important;
    }

.menu-container .dx-treeview .dx-treeview-node {
    padding: 0 0 !important;
}

.menu-container .dx-treeview .dx-treeview-toggle-item-visibility {
    right: 10px;
    left: auto;
}

.menu-container .dx-treeview .dx-rtl .dx-treeview-toggle-item-visibility {
    left: 10px;
    right: auto;
}

.menu-container .dx-treeview .dx-treeview-node[aria-level="1"] {
    font-weight: 400;
    border-bottom: 1px solid #392396;
}

.menu-container .dx-treeview .dx-treeview-node[aria-level="2"] .dx-treeview-item-content {
    font-weight: normal;
    padding: 0 60px;
}

.menu-container .dx-treeview .dx-treeview-node-container .dx-treeview-node.dx-state-selected:not(.dx-state-focused) > .dx-treeview-item {
    background: transparent;
}

.menu-container .dx-treeview .dx-treeview-node-container .dx-treeview-node.dx-state-selected > .dx-treeview-item * {
    color: #47bdd1;
}

.menu-container .dx-treeview .dx-treeview-node-container .dx-treeview-node:not(.dx-state-focused) > .dx-treeview-item.dx-state-hover {
    background-color: #47bdd1;
}

    /* Modern Footer */
.modern-footer {
    background: linear-gradient(to right, #a794f6, #392396);
    color: white;
    padding: 10px 20px;
    font-family: var(--typography_fonts_headings);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    height: 30px;
}

.footer-copyright {
    font-size: 0.9em;
    margin: 0;
}

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

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

.social-icon {
    font-size: 1.1em;
}

.footer-gradient {
    background: linear-gradient(to right, #1ea1aa, #367aa9);
    margin: 0;
    padding: 7px; /* Reducido un 10% adicional, de 10px a 9px */
}

/*Ajustes a gridview*/
.grid-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

#gridContainer {
    width: 100%;
    overflow-x: auto;
}

.grid-title {
    font-size: 24px !important;
    font-weight: bold;
    margin: 0;
    padding: 10px 0;
    text-align: center;
    margin-bottom: 20px;
}

.dx-card.wide-card {
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    border-radius: 4px;
    background-color: white;
    margin: 0 auto;
}

.dx-datagrid-header-panel .dx-toolbar {
    margin-bottom: 10px;
}


.dx-datagrid .dx-datagrid-content .dx-datagrid-table .dx-row > td.dx-cell-modified:not(.dx-field-item-content):not(.dx-validation-pending).dx-command-edit .dx-link:not(.dx-link-icon),
.dx-datagrid .dx-datagrid-content .dx-datagrid-table .dx-row > td.dx-datagrid-invalid:not(.dx-field-item-content):not(.dx-validation-pending):not(.dx-datagrid-select-all).dx-command-edit .dx-link:not(.dx-link-icon),
.dx-datagrid .dx-datagrid-content .dx-datagrid-table .dx-row > td:not(.dx-validation-pending):not(.dx-datagrid-select-all).dx-command-edit .dx-link:not(.dx-link-icon) {
    margin: 0 2px;
    min-width: 20px;
}

.dx-datagrid .dx-datagrid-content .dx-datagrid-table .dx-row > td.dx-cell-modified:not(.dx-field-item-content):not(.dx-validation-pending).dx-command-edit.dx-command-edit-with-icons .dx-link:not(.dx-link-icon),
.dx-datagrid .dx-datagrid-content .dx-datagrid-table .dx-row > td.dx-datagrid-invalid:not(.dx-field-item-content):not(.dx-validation-pending):not(.dx-datagrid-select-all).dx-command-edit.dx-command-edit-with-icons .dx-link:not(.dx-link-icon),
.dx-datagrid .dx-datagrid-content .dx-datagrid-table .dx-row > td:not(.dx-validation-pending):not(.dx-datagrid-select-all).dx-command-edit.dx-command-edit-with-icons .dx-link:not(.dx-link-icon) {
    width: auto;
}

.dx-datagrid .dx-datagrid-content .dx-datagrid-table .dx-row > td.dx-cell-modified:not(.dx-field-item-content):not(.dx-validation-pending).dx-command-edit .dx-state-disabled.dx-link-icon,
.dx-datagrid .dx-datagrid-content .dx-datagrid-table .dx-row > td.dx-datagrid-invalid:not(.dx-field-item-content):not(.dx-validation-pending):not(.dx-datagrid-select-all).dx-command-edit .dx-state-disabled.dx-link-icon,
.dx-datagrid .dx-datagrid-content .dx-datagrid-table .dx-row > td:not(.dx-validation-pending):not(.dx-datagrid-select-all).dx-command-edit .dx-state-disabled.dx-link-icon {
    opacity: .6;
}


.dx-datagrid .dx-datagrid-rowsview.dx-state-focused .dx-data-row > td.dx-command-edit > a.dx-link:focus {
    outline: #ffe035 solid 2px;
    outline-offset: 2px;
}

.dx-datagrid .dx-datagrid-rowsview.dx-state-focused .dx-data-row.dx-row-focused > td.dx-command-edit > a.dx-link:focus {
    outline-color: #fff;
    outline-offset: 0;
}


.dx-link-aprobar {
    color: #acd62b !important;
    width: 24px !important;
    height: 24px !important;
    background-size: 24px 24px !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 24px !important;
}

.dx-link-rechazar {    
    color: #ff5935 !important;
    width: 24px !important;
    height: 24px !important;
    background-size: 24px 24px !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 24px !important;
}

.dx-link-activar {
    color: #84bfec !important;
    width: 24px !important;
    height: 24px !important;
    background-size: 24px 24px !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 24px !important;
}

.intro-text {
    margin-bottom: 1.5rem; /* separa del formulario */
    padding: 1rem; /* espacio interior */
    background-color: #f0f4f8; /* fondo suave */
    border-left: 4px solid #0078c1; /* línea de acento */
    border-radius: 0.25rem; /* esquinas ligeramente redondeadas */
    font-size: 1rem; /* tamaño de texto estándar */
    color: #333333; /* texto oscuro para buena legibilidad */
    line-height: 1.6; /* separación entre líneas */
}