/* =====================================================
   PYMEVI ERP
===================================================== */

:root {
    --erp-primary: #0d62ad;
    --erp-primary-dark: #063d72;
    --erp-primary-light: #eaf4ff;

    --erp-dark: #10243d;
    --erp-text: #536274;
    --erp-light: #f6f9fc;

    --erp-border: #e5ebf2;

    --erp-radius: 22px;
}


/* =====================================================
   GENERAL
===================================================== */

.erp-hero,
.erp-intro,
.erp-modules,
.erp-flow,
.erp-benefits,
.erp-final-cta {
    position: relative;
    overflow: hidden;
}

.erp-hero *,
.erp-intro *,
.erp-modules *,
.erp-flow *,
.erp-benefits *,
.erp-final-cta * {
    box-sizing: border-box;
}


/* =====================================================
   HERO
===================================================== */

.erp-hero {
    padding: 150px 0 110px;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f5faff 50%,
            #edf6ff 100%
        );
}


.erp-hero-bg {
    position: absolute;

    width: 700px;
    height: 700px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(13, 98, 173, 0.12),
            transparent 70%
        );

    right: -200px;
    top: -200px;

    pointer-events: none;
}


.erp-hero-content {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(500px, 1.1fr);

    align-items: center;

    gap: 70px;
}


/* =====================================================
   LABEL HERO
===================================================== */

.erp-label {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 16px;

    border-radius: 50px;

    background: #ffffff;

    border: 1px solid
        rgba(13, 98, 173, 0.12);

    box-shadow:
        0 8px 25px
        rgba(13, 98, 173, 0.06);

    color: var(--erp-primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.2px;

    margin-bottom: 25px;
}


.erp-label-dot {
    width: 8px;
    height: 8px;

    background: var(--erp-primary);

    border-radius: 50%;

    box-shadow:
        0 0 0 5px
        rgba(13, 98, 173, 0.12);
}


/* =====================================================
   HERO TEXT
===================================================== */

.erp-hero-text h1 {
    font-size: clamp(42px, 5vw, 70px);

    line-height: 1.08;

    letter-spacing: -2px;

    color: var(--erp-dark);

    font-weight: 700;

    margin-bottom: 28px;
}


.erp-hero-text h1 strong {
    display: block;

    color: var(--erp-primary);

    font-weight: 800;
}


.erp-hero-text p {
    max-width: 590px;

    font-size: 18px;

    line-height: 1.8;

    color: var(--erp-text);

    margin-bottom: 35px;
}


/* =====================================================
   BOTONES HERO
===================================================== */

.erp-hero-buttons {
    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;

    margin-bottom: 40px;
}


.erp-btn-primary,
.erp-btn-secondary {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    padding: 15px 24px;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 700;

    transition: all 0.3s ease;
}


.erp-btn-primary {
    background:
        linear-gradient(
            135deg,
            #0d62ad,
            #084d8d
        );

    color: #ffffff;

    box-shadow:
        0 12px 30px
        rgba(13, 98, 173, 0.25);
}


.erp-btn-primary span {
    font-size: 20px;

    transition: transform 0.3s ease;
}


.erp-btn-primary:hover {
    color: #ffffff;

    text-decoration: none;

    transform:
        translateY(-3px);

    box-shadow:
        0 18px 40px
        rgba(13, 98, 173, 0.35);
}


.erp-btn-primary:hover span {
    transform:
        translateX(5px);
}


.erp-btn-secondary {
    background: #ffffff;

    color: var(--erp-primary);

    border: 1px solid
        rgba(13, 98, 173, 0.15);
}


.erp-btn-secondary:hover {
    text-decoration: none;

    color: var(--erp-primary);

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(13, 98, 173, 0.1);
}


/* =====================================================
   MINI BENEFICIOS
===================================================== */

.erp-mini-benefits {
    display: flex;

    flex-wrap: wrap;

    gap: 22px;
}


.erp-mini-benefits div {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #6b7785;

    font-size: 13px;

    font-weight: 600;
}


.erp-mini-benefits i {
    color: var(--erp-primary);

    font-size: 16px;
}


/* =====================================================
   HERO VISUAL
===================================================== */

.erp-hero-visual {
    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.erp-dashboard-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(13, 98, 173, 0.2),
            transparent 70%
        );

    filter: blur(20px);
}


/* =====================================================
   DASHBOARD
===================================================== */

.erp-dashboard {
    position: relative;

    width: 100%;

    max-width: 620px;

    background: #ffffff;

    border-radius: 20px;

    overflow: hidden;

    border:
        1px solid
        rgba(13, 98, 173, 0.12);

    box-shadow:
        0 35px 80px
        rgba(25, 65, 110, 0.16);

    transform:
        perspective(1200px)
        rotateY(-4deg)
        rotateX(2deg);

    transition:
        transform 0.5s ease;
}


.erp-dashboard:hover {
    transform:
        perspective(1200px)
        rotateY(0)
        rotateX(0)
        translateY(-5px);
}


/* =====================================================
   DASHBOARD HEADER
===================================================== */

.erp-dashboard-header {
    height: 64px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 22px;

    border-bottom:
        1px solid #edf0f4;

    background: #ffffff;
}


.erp-dashboard-logo {
    display: flex;

    align-items: center;

    gap: 10px;

    font-weight: 800;

    color: var(--erp-dark);

    font-size: 15px;
}


.erp-logo-icon {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--erp-primary);

    color: #ffffff;

    border-radius: 9px;

    font-size: 14px;

    font-weight: 800;
}


.erp-dashboard-user {
    display: flex;

    align-items: center;

    gap: 12px;
}


.erp-online {
    width: 8px;
    height: 8px;

    background: #21c47b;

    border-radius: 50%;

    box-shadow:
        0 0 0 4px
        rgba(33, 196, 123, 0.12);
}


.erp-user-avatar {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #eaf3fb;

    color: var(--erp-primary);

    font-size: 10px;

    font-weight: 800;
}


/* =====================================================
   DASHBOARD BODY
===================================================== */

.erp-dashboard-body {
    display: flex;

    min-height: 400px;

    background: #f8fafc;
}


/* =====================================================
   SIDEBAR
===================================================== */

.erp-dashboard-sidebar {
    width: 68px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 14px;

    padding-top: 25px;

    background: #ffffff;

    border-right:
        1px solid #edf0f4;
}


.erp-side-item {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    color: #98a4b3;

    font-size: 15px;
}


.erp-side-item.active {
    background:
        rgba(13, 98, 173, 0.1);

    color: var(--erp-primary);
}


/* =====================================================
   DASHBOARD MAIN
===================================================== */

.erp-dashboard-main {
    flex: 1;

    padding: 25px;
}


.erp-dashboard-title {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 22px;
}


.erp-dashboard-title span {
    display: block;

    color: #9aa6b2;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 4px;
}


.erp-dashboard-title h3 {
    margin: 0;

    color: var(--erp-dark);

    font-size: 19px;

    font-weight: 700;
}


.erp-dashboard-date {
    padding: 7px 10px;

    border-radius: 8px;

    background: #ffffff;

    border: 1px solid #edf0f4;

    color: #7d8995;

    font-size: 10px;
}


/* =====================================================
   DASHBOARD STATS
===================================================== */

.erp-dashboard-stats {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    margin-bottom: 20px;
}


.erp-stat-card {
    background: #ffffff;

    padding: 13px;

    border-radius: 12px;

    border:
        1px solid #edf0f4;
}


.erp-stat-icon {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    margin-bottom: 10px;

    font-size: 12px;
}


.erp-stat-icon.blue {
    background: #e8f3ff;

    color: #0d62ad;
}


.erp-stat-icon.purple {
    background: #f0ebff;

    color: #7455c8;
}


.erp-stat-icon.green {
    background: #e7f8f1;

    color: #1b9b68;
}


.erp-stat-card span {
    display: block;

    font-size: 9px;

    color: #8b97a3;

    margin-bottom: 3px;
}


.erp-stat-card strong {
    font-size: 18px;

    color: var(--erp-dark);
}


/* =====================================================
   CHART
===================================================== */

.erp-chart {
    background: #ffffff;

    padding: 20px;

    border-radius: 15px;

    border:
        1px solid #edf0f4;
}


.erp-chart-header {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


.erp-chart-header span {
    display: block;

    color: #9aa6b2;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 4px;
}


.erp-chart-header strong {
    font-size: 14px;

    color: var(--erp-dark);
}


.erp-chart-badge {
    background: #e8f8f0;

    color: #1b9b68 !important;

    padding: 6px 9px;

    border-radius: 6px;

    font-size: 10px !important;

    font-weight: 700;
}


.erp-chart-bars {
    height: 150px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 9px;

    margin-top: 22px;
}


.erp-chart-bars span {
    flex: 1;

    min-height: 20px;

    border-radius:
        6px 6px 2px 2px;

    background:
        linear-gradient(
            to top,
            #0d62ad,
            #6fb4f1
        );
}


/* =====================================================
   TARJETA FLOTANTE
===================================================== */

.erp-floating-card {
    position: absolute;

    right: -15px;

    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 18px;

    background: #ffffff;

    border-radius: 15px;

    box-shadow:
        0 18px 45px
        rgba(13, 43, 75, 0.18);

    animation:
        erpFloat 4s ease-in-out infinite;
}


@keyframes erpFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-10px);
    }

}


.erp-floating-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e8f8f0;

    color: #1b9b68;

    border-radius: 50%;
}


.erp-floating-card strong {
    display: block;

    color: var(--erp-dark);

    font-size: 12px;
}


.erp-floating-card span {
    display: block;

    color: #84909c;

    font-size: 10px;
}


/* =====================================================
   INTRO
===================================================== */

.erp-intro {
    padding: 120px 0;

    background: #ffffff;
}


.erp-intro-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    align-items: start;
}


.erp-intro-title > span,
.erp-section-label,
.erp-flow-text > span,
.erp-benefits-header > span {
    display: block;

    color: var(--erp-primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 18px;
}


.erp-intro-title h2,
.erp-section-header h2,
.erp-flow-text h2,
.erp-benefits-header h2 {
    color: var(--erp-dark);

    font-size: clamp(32px, 4vw, 50px);

    line-height: 1.2;

    letter-spacing: -1.5px;

    margin: 0;
}


.erp-intro-title h2 strong,
.erp-section-header h2 strong,
.erp-flow-text h2 strong,
.erp-benefits-header h2 strong {
    display: block;

    color: var(--erp-primary);
}


.erp-intro-text {
    padding-top: 20px;
}


.erp-intro-text p {
    color: var(--erp-text);

    font-size: 17px;

    line-height: 1.9;

    margin-bottom: 22px;
}


/* =====================================================
   MODULOS
===================================================== */

.erp-modules {
    padding: 120px 0;

    background:
        linear-gradient(
            180deg,
            #f6f9fc,
            #ffffff
        );
}


.erp-section-header {
    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 65px;
}


.erp-section-header > div {
    max-width: 700px;
}


.erp-section-header p {
    max-width: 320px;

    color: var(--erp-text);

    line-height: 1.8;

    margin: 0;
}


.erp-modules-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


.erp-module-card {
    position: relative;

    padding: 35px;

    background: #ffffff;

    border:
        1px solid var(--erp-border);

    border-radius: 20px;

    transition:
        all 0.35s ease;
}


.erp-module-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(13, 98, 173, 0.3);

    box-shadow:
        0 20px 50px
        rgba(20, 50, 80, 0.09);
}


.erp-module-card.featured {
    background:
        linear-gradient(
            135deg,
            #0d62ad,
            #063d72
        );

    color: #ffffff;

    border: none;
}


.erp-module-card > span {
    position: absolute;

    top: 25px;

    right: 28px;

    color: #c4ccd5;

    font-size: 13px;

    font-weight: 700;
}


.erp-module-card.featured > span {
    color:
        rgba(255, 255, 255, 0.45);
}


.erp-module-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background: var(--erp-primary-light);

    color: var(--erp-primary);

    font-size: 20px;

    margin-bottom: 25px;
}


.erp-module-card.featured .erp-module-icon {
    background:
        rgba(255, 255, 255, 0.12);

    color: #ffffff;
}


.erp-module-card h3 {
    color: var(--erp-dark);

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 12px;
}


.erp-module-card.featured h3 {
    color: #ffffff;
}


.erp-module-card p {
    color: var(--erp-text);

    line-height: 1.7;

    font-size: 14px;
}


.erp-module-card.featured p {
    color:
        rgba(255, 255, 255, 0.75);
}


.erp-module-card ul {
    list-style: none;

    padding: 0;

    margin:
        25px 0 0;
}


.erp-module-card li {
    position: relative;

    padding-left: 20px;

    margin-bottom: 10px;

    color: #748190;

    font-size: 13px;
}


.erp-module-card li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: var(--erp-primary);

    font-weight: 800;
}


.erp-module-card.featured li {
    color:
        rgba(255, 255, 255, 0.8);
}


.erp-module-card.featured li::before {
    color: #ffffff;
}


/* =====================================================
   FLOW
===================================================== */

.erp-flow {
    padding: 130px 0;

    background: #ffffff;
}


.erp-flow-wrapper {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    align-items: center;
}


.erp-flow-text p {
    margin-top: 28px;

    color: var(--erp-text);

    font-size: 17px;

    line-height: 1.9;

    max-width: 550px;
}


.erp-text-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 15px;

    color: var(--erp-primary);

    font-weight: 800;

    text-decoration: none;
}


.erp-text-link span {
    font-size: 22px;

    transition: transform 0.3s ease;
}


.erp-text-link:hover {
    color: var(--erp-primary);

    text-decoration: none;
}


.erp-text-link:hover span {
    transform:
        translateX(5px);
}


/* =====================================================
   DIAGRAMA
===================================================== */

.erp-flow-diagram {
    position: relative;

    width: 450px;
    height: 450px;

    margin: auto;

    border-radius: 50%;

    border:
        1px dashed
        rgba(13, 98, 173, 0.25);

    background:
        radial-gradient(
            circle,
            #f3f9ff,
            #ffffff 65%
        );
}


.flow-center {
    position: absolute;

    width: 145px;
    height: 145px;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #0d62ad,
            #063d72
        );

    color: #ffffff;

    border-radius: 50%;

    box-shadow:
        0 20px 50px
        rgba(13, 98, 173, 0.3);
}


.flow-logo {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255, 255, 255, 0.15);

    border-radius: 12px;

    font-weight: 800;

    font-size: 22px;

    margin-bottom: 8px;
}


.flow-center strong {
    font-size: 13px;
}


.flow-item {
    position: absolute;

    width: 110px;
    height: 110px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

    background: #ffffff;

    border-radius: 20px;

    border:
        1px solid var(--erp-border);

    box-shadow:
        0 15px 35px
        rgba(20, 50, 80, 0.08);
}


.flow-item i {
    color: var(--erp-primary);

    font-size: 22px;
}


.flow-item span {
    color: var(--erp-dark);

    font-size: 12px;

    font-weight: 700;
}


.flow-top {
    top: -30px;
    left: 50%;

    transform:
        translateX(-50%);
}


.flow-right {
    right: -30px;
    top: 50%;

    transform:
        translateY(-50%);
}


.flow-bottom {
    bottom: -30px;
    left: 50%;

    transform:
        translateX(-50%);
}


.flow-left {
    left: -30px;
    top: 50%;

    transform:
        translateY(-50%);
}


/* =====================================================
   BENEFICIOS
===================================================== */

.erp-benefits {
    padding: 120px 0;

    background:
        linear-gradient(
            135deg,
            #0c1e32,
            #102d4d
        );
}


.erp-benefits-header {
    text-align: center;

    max-width: 750px;

    margin: auto auto 65px;
}


.erp-benefits-header h2 {
    color: #ffffff;
}


.erp-benefits-header h2 strong {
    color: #6eb7f4;
}


.erp-benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.erp-benefit {
    padding: 35px 28px;

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.06);

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.erp-benefit:hover {
    transform:
        translateY(-7px);

    background:
        rgba(255, 255, 255, 0.1);
}


.erp-benefit > div {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background:
        rgba(83, 167, 237, 0.15);

    color: #74bcf7;

    font-size: 21px;

    margin-bottom: 25px;
}


.erp-benefit h3 {
    color: #ffffff;

    font-size: 19px;

    margin-bottom: 12px;
}


.erp-benefit p {
    color:
        rgba(255, 255, 255, 0.62);

    font-size: 14px;

    line-height: 1.7;

    margin: 0;
}


/* =====================================================
   CTA FINAL
===================================================== */

.erp-final-cta {
    padding: 120px 0;

    background: #f6f9fc;
}


.erp-final-box {
    position: relative;

    overflow: hidden;

    padding: 90px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #0d62ad,
            #073f75
        );

    box-shadow:
        0 30px 80px
        rgba(13, 98, 173, 0.25);
}


.erp-final-content {
    position: relative;

    z-index: 2;

    max-width: 760px;
}


.erp-final-label {
    display: inline-block;

    padding: 9px 14px;

    border-radius: 50px;

    background:
        rgba(255, 255, 255, 0.12);

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.3px;

    margin-bottom: 25px;
}


.erp-final-content h2 {
    color: #ffffff;

    font-size:
        clamp(35px, 5vw, 58px);

    line-height: 1.12;

    letter-spacing: -1.5px;

    margin-bottom: 25px;
}


.erp-final-content h2 strong {
    display: block;

    color: #91ceff;
}


.erp-final-content p {
    max-width: 650px;

    color:
        rgba(255, 255, 255, 0.75);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 35px;
}


.erp-final-buttons {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}


.erp-final-primary,
.erp-final-secondary {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 16px 25px;

    border-radius: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:
        all 0.3s ease;
}


.erp-final-primary {
    background: #ffffff;

    color: var(--erp-primary);
}


.erp-final-primary:hover {
    color: var(--erp-primary);

    text-decoration: none;

    transform:
        translateY(-3px);
}


.erp-final-secondary {
    border:
        1px solid
        rgba(255, 255, 255, 0.3);

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.05);
}


.erp-final-secondary:hover {
    color: #ffffff;

    text-decoration: none;

    background:
        rgba(255, 255, 255, 0.12);

    transform:
        translateY(-3px);
}


/* =====================================================
   DECORACIONES CTA
===================================================== */

.erp-final-decoration {
    position: absolute;

    inset: 0;

    pointer-events: none;
}


.erp-decoration-circle {
    position: absolute;

    border-radius: 50%;

    border:
        1px solid
        rgba(255, 255, 255, 0.1);
}


.circle-1 {
    width: 400px;
    height: 400px;

    right: -150px;
    top: -150px;
}


.circle-2 {
    width: 600px;
    height: 600px;

    right: -300px;
    top: -250px;
}


.circle-3 {
    width: 250px;
    height: 250px;

    right: 150px;
    bottom: -180px;
}


/* =====================================================
   RESPONSIVE TABLET
===================================================== */

@media (max-width: 991px) {

    .erp-hero {
        padding:
            130px 0 90px;
    }


    .erp-hero-content {
        grid-template-columns:
            1fr;

        gap: 60px;
    }


    .erp-hero-text {
        text-align: center;
    }


    .erp-hero-text p {
        margin-left: auto;
        margin-right: auto;
    }


    .erp-hero-buttons,
    .erp-mini-benefits {
        justify-content: center;
    }


    .erp-intro-grid,
    .erp-flow-wrapper {
        grid-template-columns:
            1fr;

        gap: 60px;
    }


    .erp-section-header {
        flex-direction: column;

        align-items: flex-start;
    }


    .erp-modules-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .erp-benefits-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .erp-final-box {
        padding: 70px 50px;
    }

}


/* =====================================================
   RESPONSIVE MOBILE
===================================================== */

@media (max-width: 767px) {

    .erp-hero {
        padding:
            110px 0 70px;
    }


    .erp-hero-text h1 {
        font-size: 42px;

        letter-spacing: -1.5px;
    }


    .erp-hero-text p {
        font-size: 16px;
    }


    .erp-hero-visual {
        min-height: auto;
    }


    .erp-dashboard {
        transform: none;
    }


    .erp-dashboard-sidebar {
        width: 48px;
    }


    .erp-dashboard-main {
        padding: 15px;
    }


    .erp-dashboard-stats {
        gap: 7px;
    }


    .erp-stat-card {
        padding: 9px;
    }


    .erp-stat-card strong {
        font-size: 14px;
    }


    .erp-stat-card span {
        font-size: 8px;
    }


    .erp-floating-card {
        right: 5px;

        bottom: -20px;

        padding: 11px 13px;
    }


    .erp-floating-card strong {
        font-size: 10px;
    }


    .erp-floating-card span {
        font-size: 9px;
    }


    .erp-intro,
    .erp-modules,
    .erp-flow,
    .erp-benefits,
    .erp-final-cta {
        padding:
            80px 0;
    }


    .erp-intro-grid {
        gap: 30px;
    }


    .erp-intro-text p {
        font-size: 16px;
    }


    .erp-section-header {
        margin-bottom: 40px;
    }


    .erp-modules-grid {
        grid-template-columns:
            1fr;
    }


    .erp-module-card {
        padding: 28px;
    }


    .erp-flow-diagram {
        width: 300px;
        height: 300px;
    }


    .flow-center {
        width: 100px;
        height: 100px;
    }


    .flow-logo {
        width: 35px;
        height: 35px;

        font-size: 17px;

        margin-bottom: 5px;
    }


    .flow-center strong {
        font-size: 10px;
    }


    .flow-item {
        width: 80px;
        height: 80px;

        border-radius: 15px;
    }


    .flow-item i {
        font-size: 16px;
    }


    .flow-item span {
        font-size: 9px;
    }


    .flow-top {
        top: -20px;
    }


    .flow-right {
        right: -20px;
    }


    .flow-bottom {
        bottom: -20px;
    }


    .flow-left {
        left: -20px;
    }


    .erp-benefits-grid {
        grid-template-columns:
            1fr;
    }


    .erp-final-box {
        padding: 55px 28px;

        border-radius: 22px;
    }


    .erp-final-content h2 {
        font-size: 37px;
    }


    .erp-final-content p {
        font-size: 15px;
    }


    .erp-final-buttons {
        flex-direction: column;
    }


    .erp-final-primary,
    .erp-final-secondary {
        width: 100%;
    }


    .circle-1 {
        right: -280px;
    }

}


/* =====================================================
   MOBILE PEQUEÑO
===================================================== */

@media (max-width: 480px) {

    .erp-label {
        font-size: 9px;

        padding: 8px 12px;
    }


    .erp-hero-text h1 {
        font-size: 36px;
    }


    .erp-hero-buttons {
        flex-direction: column;
    }


    .erp-btn-primary,
    .erp-btn-secondary {
        width: 100%;
    }


    .erp-mini-benefits {
        flex-direction: column;

        align-items: center;

        gap: 12px;
    }


    .erp-dashboard-title h3 {
        font-size: 14px;
    }


    .erp-dashboard-date {
        display: none;
    }


    .erp-chart-bars {
        height: 100px;
    }

}