* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    display: block;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5f7fb;
    color: #111827;
    overflow-x: hidden;
}

/* ========================================================= */
/* LAYOUT */
/* ========================================================= */

.app-layout {
    display: flex;
    min-height: 100vh;
}

.main-wrapper {
    margin-left: 210px;
    width: calc(100% - 210px);
}

.main-content {
    padding: 28px 34px;
}

/* ========================================================= */
/* SIDEBAR */
/* ========================================================= */

.sidebar {
    width: 210px;
    background: #fbfcfe;
    border-right: 1px solid #edf2f7;
    position: fixed;
    height: 100vh;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 0 8px;
}

    .sidebar-logo img {
        width: 42px;
    }

.sidebar-logo-text {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

    .sidebar-logo-text small {
        display: block;
        font-size: 11px;
        color: #64748b;
        margin-top: 2px;
    }

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #475569;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    transition: .2s;
}

    .sidebar-link:hover {
        background: white;
        color: #111827;
    }

    .sidebar-link.active {
        background: linear-gradient(135deg,#4f46e5,#6366f1);
        color: white;
        font-weight: 600;
        box-shadow: 0 10px 25px rgba(79,70,229,.25);
    }

/* ========================================================= */
/* SIDEBAR WIDGET */
/* ========================================================= */

.sidebar-widget {
    background: white;
    border-radius: 24px;
    padding: 18px;
    margin-top: auto;
    border: 1px solid #eef2f7;
}

.widget-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

    .widget-icon i {
        color: #4f46e5;
        font-size: 18px;
    }

.sidebar-widget strong {
    display: block;
    font-size: 15px;
    margin-bottom: 10px;
}

.sidebar-widget p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================================= */
/* TOPBAR */
/* ========================================================= */

.top-services-bar {
    margin-top: -20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    margin-bottom: 1px;
    flex-wrap: wrap;
}

.top-search input {
    width: 480px;
    max-width: 100%;
    height: 56px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 0 20px;
    font-size: 14px;
    outline: none;
}

    .top-search input:focus {
        border-color: #6366f1;
    }

/* ========================================================= */
/* TOP CARDS */
/* ========================================================= */

.top-credits {
    background: white;
    padding: 14px 20px;
    border-radius: 20px;
    border: 1px solid #eef2f7;
    min-width: 150px;
}

    .top-credits span {
        display: block;
        color: #64748b;
        font-size: 12px;
        margin-bottom: 4px;
    }

    .top-credits strong {
        font-size: 30px;
        font-weight: 800;
        color: #111827;
    }

.top-user {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 10px 14px;
    border-radius: 18px;
    border: 1px solid #eef2f7;
}

.top-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.top-user {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 10px 14px;
    border-radius: 18px;
    border: 1px solid #eef2f7;
    min-width: 260px;
}

.top-user-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    flex: 1;
}

.top-logout {
    margin-left: auto;
    border: none;
    background: #f1f5f9;
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
    white-space: nowrap;
}

    .top-logout:hover {
        background: #e2e8f0;
    }

.user-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eef2ff;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
/* ========================================================= */
/* HERO */
/* ========================================================= */

.dashboard-home {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero-banner {
    background: linear-gradient(135deg,#eef2ff,#f8faff);
    border-radius: 34px;
    padding: 36px;
    border: 1px solid #edf2f7;
    display: grid;
    grid-template-columns: 1.4fr .8fr .7fr;
    gap: 28px;
    align-items: center;
}

.hero-left h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #111827;
}

.hero-left p {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    margin-top: 32px;
}

.feature-card {
    background: white;
    border-radius: 22px;
    padding: 20px;
    border: 1px solid #edf2f7;
}

    .feature-card span {
        font-size: 28px;
        display: block;
        margin-bottom: 10px;
    }

    .feature-card strong {
        display: block;
        font-size: 15px;
        margin-bottom: 4px;
    }

    .feature-card small {
        color: #64748b;
        font-size: 13px;
    }

/* ========================================================= */
/* SUMMARY */
/* ========================================================= */

.hero-summary {
    background: white;
    border-radius: 28px;
    padding: 28px;
    border: 1px solid #edf2f7;
}

    .hero-summary h3 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 22px;
    }

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #f1f5f9;
}

    .summary-item:last-child {
        border-bottom: none;
    }

    .summary-item span {
        color: #64748b;
        font-size: 14px;
    }

    .summary-item strong {
        color: #111827;
        font-size: 15px;
    }

/* ========================================================= */
/* HERO IMAGE */
/* ========================================================= */

.hero-image-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero-image-box img {
        max-width: 260px;
    }

/* ========================================================= */
/* SERVICES */
/* ========================================================= */

.services-section {
    margin-top: 10px;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.services-title h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 4px;
}

.services-title p {
    color: #64748b;
    font-size: 15px;
}

.services-actions {
    display: flex;
    gap: 14px;
}

.services-select,
.services-search {
    height: 54px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    background: white;
    padding: 0 18px;
    font-size: 14px;
}

.services-search {
    width: 280px;
}

/* ========================================================= */
/* CATEGORY */
/* ========================================================= */

.service-category {
    background: white;
    border-radius: 28px;
    border: 1px solid #edf2f7;
    padding: 24px;
    margin-bottom: 24px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.category-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.category-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f46e5;
    font-size: 22px;
}

.category-info h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 2px;
}

.category-info p {
    color: #64748b;
    font-size: 14px;
}

/* ========================================================= */
/* SERVICES GRID */
/* ========================================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 22px;
}

/* ========================================================= */
/* CARD */
/* ========================================================= */

.service-card {
    background: white;
    border: 1px solid #edf2f7;
    border-radius: 26px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    transition: .2s ease;
}

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(15,23,42,.08);
    }

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
}

.service-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.service-purple {
    background: #f3f0ff;
    color: #6d28d9;
}

.service-green {
    background: #ecfdf3;
    color: #16a34a;
}

.service-blue {
    background: #eff6ff;
    color: #2563eb;
}

.service-orange {
    background: #fff7ed;
    color: #ea580c;
}

.service-pink {
    background: #fdf2f8;
    color: #e11d48;
}

.service-price {
    background: #f8fafc;
    border-radius: 14px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 700;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.service-description {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.service-button {
    height: 52px;
    border-radius: 18px;
    border: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
    width: 100%;
}

    .service-button:hover {
        transform: translateY(-2px);
    }

.btn-purple {
    background: #ede9fe;
    color: #6d28d9;
}

.btn-green {
    background: #dcfce7;
    color: #16a34a;
}

.btn-blue {
    background: #dbeafe;
    color: #2563eb;
}

.btn-orange {
    background: #ffedd5;
    color: #ea580c;
}

.btn-pink {
    background: #fce7f3;
    color: #e11d48;
}

/* ========================================================= */
/* RESPONSIVE */
/* ========================================================= */

@media(max-width:1200px) {

    .hero-banner {
        grid-template-columns: 1fr;
    }

    .hero-features {
        grid-template-columns: repeat(2,1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:991px) {

    .sidebar {
        display: none;
    }

    .main-wrapper {
        margin-left: 0;
        width: 100%;
    }

    .top-search input {
        width: 100%;
    }
}

@media(max-width:768px) {

    .main-content {
        padding: 20px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-header {
        flex-direction: column;
        align-items: stretch;
    }

    .services-actions {
        flex-direction: column;
    }

    .services-search,
    .services-select {
        width: 100%;
    }
}
/* ========================================================= */
/* SERVICES PAGE */
/* ========================================================= */

.services-page {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ========================================================= */
/* HERO */
/* ========================================================= */

.services-hero {
    background: linear-gradient(135deg,#eef2ff,#f8faff);
    border: 1px solid #edf2f7;
    border-radius: 34px;
    padding: 36px;
    display: grid;
    grid-template-columns: 1.4fr .8fr .7fr;
    gap: 28px;
    align-items: center;
}

.hero-left h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #111827;
}

.hero-left p {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
}

.hero-mini-cards {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    margin-top: 30px;
}

.mini-card {
    background: white;
    border: 1px solid #edf2f7;
    border-radius: 22px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .mini-card span {
        font-size: 28px;
    }

    .mini-card strong {
        font-size: 15px;
    }

    .mini-card small {
        font-size: 13px;
        color: #64748b;
    }

/* ========================================================= */
/* SUMMARY */
/* ========================================================= */

.summary-card {
    background: white;
    border: 1px solid #edf2f7;
    border-radius: 28px;
    padding: 28px;
}

    .summary-card h4 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 22px;
    }

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #f1f5f9;
}

    .summary-item:last-child {
        border-bottom: none;
    }

    .summary-item span {
        color: #64748b;
        font-size: 14px;
    }

    .summary-item strong {
        font-size: 15px;
        color: #111827;
    }

/* ========================================================= */
/* HERO IMAGE */
/* ========================================================= */

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero-image img {
        width: 100%;
        max-width: 260px;
    }

/* ========================================================= */
/* SERVICES SECTION */
/* ========================================================= */

.services-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.services-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .services-section-header h2 {
        font-size: 38px;
        font-weight: 800;
        margin-bottom: 6px;
    }

    .services-section-header p {
        color: #64748b;
        font-size: 15px;
    }

/* ========================================================= */
/* FILTERS */
/* ========================================================= */

.filters-modern {
    display: flex;
    gap: 14px;
    align-items: center;
}

    .filters-modern select,
    .filters-modern input {
        height: 54px;
        border-radius: 18px;
        border: 1px solid #e5e7eb;
        background: white;
        padding: 0 18px;
        font-size: 14px;
        outline: none;
    }

    .filters-modern input {
        width: 280px;
    }

/* ========================================================= */
/* GROUP */
/* ========================================================= */

.service-group {
    background: white;
    border: 1px solid #edf2f7;
    border-radius: 28px;
    padding: 24px;
}

.group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.group-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.group-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f46e5;
    font-size: 22px;
}

.group-header h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 2px;
}

.group-header p {
    color: #64748b;
    font-size: 14px;
}

/* ========================================================= */
/* GRID */
/* ========================================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 22px;
}

/* ========================================================= */
/* CARD */
/* ========================================================= */

.service-card-modern {
    background: white;
    border: 1px solid #edf2f7;
    border-radius: 26px;
    padding: 22px;
    text-decoration: none;
    color: #111827;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    transition: .2s ease;
}

    .service-card-modern:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(15,23,42,.08);
        color: #111827;
    }

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-price {
    background: #f8fafc;
    border-radius: 14px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.service-icon-box {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: #f3f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .service-icon-box img {
        width: 34px;
        height: 34px;
        object-fit: contain;
    }

/* ========================================================= */
/* CONTENT */
/* ========================================================= */

.service-content {
    flex: 1;
}

    .service-content h5 {
        font-size: 18px;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 12px;
        color: #111827;
    }

    .service-content p {
        font-size: 14px;
        line-height: 1.6;
        color: #64748b;
    }

/* ========================================================= */
/* BUTTON */
/* ========================================================= */

.service-button {
    margin-top: 22px;
    height: 52px;
    border-radius: 18px;
    background: #ede9fe;
    color: #6d28d9;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
}

.service-card-modern:hover .service-button {
    background: #ddd6fe;
}

/* ========================================================= */
/* RESPONSIVE */
/* ========================================================= */

@media(max-width:1200px) {

    .services-hero {
        grid-template-columns: 1fr;
    }

    .hero-mini-cards {
        grid-template-columns: repeat(2,1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-mini-cards {
        grid-template-columns: 1fr;
    }

    .filters-modern {
        flex-direction: column;
        width: 100%;
    }

        .filters-modern input,
        .filters-modern select {
            width: 100%;
        }

    .hero-left h1 {
        font-size: 36px;
    }
}

/* ========================================================= */
/* HERO PUBLIC */
/* ========================================================= */

.hero-modern {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    padding: 30px 0;
}

    .hero-modern .container {
        max-width: 1280px;
    }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #eef2ff;
    color: #4f46e5;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 36px;
    line-height: 1.05;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
    max-width: 720px;
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: #475569;
    max-width: 680px;
    margin-bottom: 34px;
}

/* ========================================================= */
/* BUTTONS */
/* ========================================================= */

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary-modern {
    height: 58px;
    padding: 0 30px;
    border-radius: 18px;
    background: linear-gradient(135deg,#4f46e5,#6366f1);
    color: white;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(79,70,229,.25);
    transition: .2s ease;
}

    .btn-primary-modern:hover {
        transform: translateY(-3px);
        color: white;
    }

.btn-outline-modern {
    height: 58px;
    padding: 0 30px;
    border-radius: 18px;
    background: white;
    border: 1px solid #e5e7eb;
    color: #111827;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
}

    .btn-outline-modern:hover {
        background: #f8fafc;
        color: #111827;
        transform: translateY(-3px);
    }

/* ========================================================= */
/* STATS */
/* ========================================================= */

.hero-stats {
    display: flex;
    gap: 44px;
    flex-wrap: wrap;
}

    .hero-stats div {
        display: flex;
        flex-direction: column;
    }

    .hero-stats strong {
        font-size: 34px;
        font-weight: 800;
        color: #111827;
        line-height: 1;
        margin-bottom: 8px;
    }

    .hero-stats span {
        color: #64748b;
        font-size: 15px;
    }

/* ========================================================= */
/* IMAGE */
/* ========================================================= */

.hero-image {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    animation: floatHero 4s ease-in-out infinite;
}

@keyframes floatHero {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ========================================================= */
/* RESPONSIVE */
/* ========================================================= */

@media(max-width:1200px) {

    .hero-title {
        font-size: 26px;
    }
}

@media(max-width:991px) {

    .hero-modern {
        text-align: center;
        padding-top: 20px;
    }

    .hero-title {
        font-size: 26px;
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        margin-top: 40px;
        max-width: 420px;
    }
}

@media(max-width:768px) {

    .hero-title {
        font-size: 12px;
    }

    .hero-description {
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary-modern,
    .btn-outline-modern {
        width: 100%;
    }

    .hero-stats {
        gap: 24px;
    }

        .hero-stats strong {
            font-size: 28px;
        }
}

/* ========================================================= */
/* TABLES */
/* ========================================================= */

.history-table-wrapper {
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 12px 16px;
    overflow: auto;
    margin-top: 20px;
    box-shadow: 0 4px 18px rgba(15,23,42,.04);
}
.history-table {
    width: 100%;
    border-collapse: collapse;
}

    .history-table thead {
        background: #f8fafc;
    }

    .history-table th {
        text-align: left;
        padding: 20px 24px;
        font-size: 14px;
        font-weight: 700;
        color: #111827;
        border-bottom: 1px solid #edf2f7;
    }

    .history-table td {
        padding: 20px 24px;
        font-size: 14px;
        color: #475569;
        border-bottom: 1px solid #f1f5f9;
        vertical-align: middle;
    }

    .history-table tbody tr {
        transition: .2s;
    }

        .history-table tbody tr:hover {
            background: #f8fafc;
        }

        .history-table tbody tr:last-child td {
            border-bottom: none;
        }

#tablaHistorial {
    width: 100% !important;
    border-collapse: collapse;
}

    #tablaHistorial th {
        padding: 18px 14px;
    }

    #tablaHistorial td {
        padding: 18px 14px;
    }

    #tablaHistorial tbody tr:hover {
        background: #f8fafc;
    }

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
    margin-bottom: 16px;
}

/* ========================================================= */
/* STATUS */
/* ========================================================= */

/* ========================================================= */
/* STATUS BADGES */
/* ========================================================= */

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    height: 30px;
    padding: 0 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1px;
}
.status-success {
    background: #edf9f1;
    color: #15803d;
}

.status-error {
    background: #fef2f2;
    color: #dc2626;
}

.status-processing {
    background: #fff8f1;
    color: #ea580c;
}/* PENDING */

.status-pending {
    background: #dbeafe;
    color: #2563eb;
}

/*
.floating-support {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(15,23,42,.10);
    z-index: 9999;
    transition: .25s ease;
}

    .floating-support i {
        color: #10b981;
        font-size: 30px;
    }

    .floating-support:hover {
        transform: translateY(-4px);
    }
@media(max-width:991px) {

    .floating-support {
        bottom: 90px;
        right: 18px;
        width: 58px;
        height: 58px;
    }

        .floating-support i {
            font-size: 28px;
        }
}*/
/*
    .floating-support {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(15,23,42,.10);
    transition: .25s ease;
    margin: 0 auto 14px auto;
    flex-shrink: 0;
}

    .floating-support i {
        color: #10b981;
        font-size: 30px;
    }

    .floating-support:hover {
        transform: translateY(-4px);
    }

    */

.floating-support {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(15,23,42,.10);
    z-index: 9999;
    transition: .25s ease;
}

    .floating-support i {
        color: #10b981;
        font-size: 30px;
    }

    .floating-support:hover {
        transform: translateY(-4px);
    }
    

/* ========================================================= */
/* MOBILE MENU */
/* ========================================================= */

.mobile-menu-btn {
    display: none;
}

@media(max-width:991px) {

    .mobile-menu-btn {
        display: flex;
        position: fixed;
        top: 18px;
        left: 18px;
        width: 48px;
        height: 48px;
        border: none;
        border-radius: 14px;
        background: #4f46e5;
        color: white;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        z-index: 99999;
        box-shadow: 0 10px 25px rgba(79,70,229,.25);
    }

    .sidebar {
        display: flex;
        transform: translateX(-110%);
        transition: .25s ease;
    }

        .sidebar.sidebar-open {
            transform: translateX(0);
        }

    .main-wrapper {
        margin-left: 0;
        width: 100%;
    }
}
/*
.sidebar-version {
    margin-top: auto;
    padding: 18px;
    color: #94a3b8;
    font-size: 12px;
    text-align: center;
}
*/

.sidebar-version {
    margin-top: auto;
    padding: 18px;
    color: #94a3b8;
    font-size: 12px;
    text-align: center;
}


/*para el boton de cada servicio*/
.btn-modern {
    height: 46px;
    padding: 0 20px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg,#6366f1,#4f46e5);
    color: white;
    font-size: 14px;
    font-weight: 700;
    transition: .2s ease;
    box-shadow: 0 8px 20px rgba(79,70,229,.16);
}
    .btn-modern:hover {
        transform: translateY(-1px);
        box-shadow: 0 12px 24px rgba(79,70,229,.24);
    }

.btn-descargar {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

    .btn-descargar:hover {
        color: #1d4ed8;
        border-bottom-color: #1d4ed8;
    }

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    border: none;
    border-radius: 14px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 15px;
    color: white;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.25);
    transition: all 0.2s ease;
}

    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 24px rgba(99, 102, 241, 0.30);
    }

.card-header-custom {
    background: #4f46e5;
    color: white;
}


.btn-icon {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: #4f46e5;
    color: white;
    transition: .2s;
}

    .btn-icon:hover {
        background: #4338ca;
        transform: translateY(-1px);
    }

.btn-outline-custom {
    border: 1px solid #d1d5db;
    background: white;
    color: #374151;
    border-radius: 12px;
    padding: 8px 14px;
    transition: .2s;
}

    .btn-outline-custom:hover {
        background: #f3f4f6;
        border-color: #9ca3af;
    }