/* /Pages/WLandPage.razor.rz.scp.css */
/* ===== VARIABLES Y CONFIGURACIÓN BASE ===== */
:root[b-c48uvxsohl] {
    --primary-color: #3AAA35; /* Verde más intenso basado en tu captura */
    --secondary-color: #4CAF50;
    --accent-color: #1B5E20;
    --accent-glow: rgba(58, 170, 53, 0.4);
    --text-on-primary: #FFFFFF;
    --background-color: #f5f5f7; /* Fondo gris claro similar a tu captura */
    --surface-color: #ffffff;
    --text-color: #111827;
    --text-secondary: #4B5563;
    --navbar-bg: rgba(21, 28, 46, 0.95);
    --hero-overlay: rgba(0, 0, 0, 0.25);
    --card-bg: rgba(255, 255, 255, 0.9);
    --box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition-speed: 0.3s;
}

/* ===== RESET Y ESTILOS GLOBALES ===== */
*[b-c48uvxsohl] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body[b-c48uvxsohl] {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

section[b-c48uvxsohl] {
    padding: 80px 0;
    position: relative;
}

.container[b-c48uvxsohl] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1[b-c48uvxsohl], h2[b-c48uvxsohl], h3[b-c48uvxsohl], h4[b-c48uvxsohl], h5[b-c48uvxsohl], h6[b-c48uvxsohl] {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a[b-c48uvxsohl] {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

button[b-c48uvxsohl] {
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

img[b-c48uvxsohl] {
    max-width: 100%;
    height: auto;
}

/* ===== ENCABEZADOS DE SECCIÓN Y DIVISORES ===== */
.section-header[b-c48uvxsohl] {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
}

    .section-header[b-c48uvxsohl]::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        border-radius: 2px;
    }

.section-divider[b-c48uvxsohl] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.divider-line[b-c48uvxsohl] {
    height: 1px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.divider-dot[b-c48uvxsohl] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    margin: 0 10px;
}

.section-intro[b-c48uvxsohl] {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.section-padding[b-c48uvxsohl] {
    padding: 80px 0;
}
/* ===== BARRA DE NAVEGACIÓN ===== */
.navbar[b-c48uvxsohl] {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.8rem 1.5rem !important;
    background-color: var(--navbar-bg) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, rgba(21, 28, 46, 0.95), rgba(31, 41, 55, 0.95)) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-brand[b-c48uvxsohl] {
    display: flex;
    align-items: center;
}

.navbar-item.logo[b-c48uvxsohl] {
    display: flex;
    align-items: center;
    background: none !important;
    padding: 0.5rem 0 !important;
    margin-right: 1rem;
}

.logo-text[b-c48uvxsohl], .logo-accent[b-c48uvxsohl] {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.logo-text[b-c48uvxsohl] {
    color: white;
}

.logo-accent[b-c48uvxsohl] {
    color: var(--primary-color);
    margin-left: 5px;
    position: relative;
}

    .logo-accent[b-c48uvxsohl]::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--primary-color);
        border-radius: 3px;
        box-shadow: 0 0 8px var(--primary-color);
    }

.navbar-item[b-c48uvxsohl] {
    color: white !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

    .navbar-item:hover[b-c48uvxsohl] {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--primary-color) !important;
    }

.nav-link[b-c48uvxsohl] {
    position: relative;
}

    .nav-link[b-c48uvxsohl]::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: width 0.3s ease;
    }

    .nav-link:hover[b-c48uvxsohl]::after {
        width: 100%;
    }

.navbar-item.login-button[b-c48uvxsohl] {
    background: linear-gradient(to right, var(--primary-color), #2c8c28) !important;
    color: white !important;
    border-radius: 30px;
    padding: 0.5rem 1.5rem !important;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(58, 170, 53, 0.3);
    margin-left: 0.5rem;
    position: relative;
}

    .navbar-item.login-button[b-c48uvxsohl]::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: 30px;
        background: var(--primary-color);
        z-index: -1;
        opacity: 0.3;
        filter: blur(6px);
        transition: all 0.3s ease;
    }

    .navbar-item.login-button:hover[b-c48uvxsohl] {
        background-color: #2c8c28 !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(58, 170, 53, 0.4);
    }

        .navbar-item.login-button:hover[b-c48uvxsohl]::after {
            opacity: 0.5;
            filter: blur(8px);
        }

.navbar-burger[b-c48uvxsohl] {
    color: white !important;
    height: 3.5rem;
}

    .navbar-burger span[b-c48uvxsohl] {
        background-color: white !important;
        height: 2px;
        width: 20px;
    }

    .navbar-burger:hover[b-c48uvxsohl] {
        background-color: transparent !important;
    }

.navbar-menu[b-c48uvxsohl] {
    background-color: transparent;
    box-shadow: none;
}

    .navbar-menu.is-active[b-c48uvxsohl] {
        animation: fadeInDown-b-c48uvxsohl 0.3s ease;
    }

.navbar.scrolled[b-c48uvxsohl] {
    background-color: var(--navbar-bg) !important;
    padding: 0.5rem 1.5rem !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
/* ===== NUEVO HERO SECTION ===== */
#hero[b-c48uvxsohl] {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-background[b-c48uvxsohl] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #151c2e 0%, #1F2937 100%);
    z-index: -1;
}

.hero-gradient[b-c48uvxsohl] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(58, 170, 53, 0.15) 0%, transparent 60%);
}

.hero-content[b-c48uvxsohl] {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-row[b-c48uvxsohl] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text[b-c48uvxsohl] {
    flex: 1;
    min-width: 300px;
    max-width: 650px;
    color: white;
}

.hero-visual[b-c48uvxsohl] {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
}

.main-heading[b-c48uvxsohl] {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.main-subtitle[b-c48uvxsohl] {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.9;
}

.hero-cta[b-c48uvxsohl] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cta-button[b-c48uvxsohl] {
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--primary-color), #2c8c28);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(58, 170, 53, 0.3);
    transition: all 0.3s ease;
}

    .cta-button:hover[b-c48uvxsohl] {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(58, 170, 53, 0.4);
    }

.secondary-cta[b-c48uvxsohl] {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .secondary-cta:hover[b-c48uvxsohl] {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
    }

    .secondary-cta i[b-c48uvxsohl] {
        transition: transform 0.3s ease;
    }

    .secondary-cta:hover i[b-c48uvxsohl] {
        transform: translateX(5px);
    }

.hero-features[b-c48uvxsohl] {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.hero-feature[b-c48uvxsohl] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
    font-size: 0.95rem;
}

    .hero-feature i[b-c48uvxsohl] {
        color: var(--primary-color);
    }

.hero-image-container[b-c48uvxsohl] {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.hero-main-image[b-c48uvxsohl] {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateZ(0);
}

.hero-payments[b-c48uvxsohl] {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.payment-logo[b-c48uvxsohl] {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.users-count[b-c48uvxsohl] {
    position: absolute;
    left: -1.5rem;
    bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(58, 170, 53, 0.9);
    border-radius: 50px;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

    .users-count i[b-c48uvxsohl] {
        font-size: 1.5rem;
    }

.users-text[b-c48uvxsohl] {
    display: flex;
    flex-direction: column;
}

.users-number[b-c48uvxsohl] {
    font-weight: 700;
    font-size: 1.1rem;
}

.users-label[b-c48uvxsohl] {
    font-size: 0.8rem;
    opacity: 0.9;
}

.hero-scroll[b-c48uvxsohl] {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

    .hero-scroll a[b-c48uvxsohl] {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: white;
        font-size: 0.9rem;
        opacity: 0.8;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .hero-scroll a:hover[b-c48uvxsohl] {
            opacity: 1;
            transform: translateY(-3px);
        }

    .hero-scroll span[b-c48uvxsohl] {
        margin-bottom: 0.5rem;
    }

    .hero-scroll i[b-c48uvxsohl] {
        animation: bounce-b-c48uvxsohl 2s infinite;
    }
/* ===== CARACTERÍSTICAS Y TARJETAS ===== */
.features[b-c48uvxsohl] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card[b-c48uvxsohl] {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .feature-card[b-c48uvxsohl]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--primary-color);
        transition: width 0.3s ease;
    }

    .feature-card:hover[b-c48uvxsohl] {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

        .feature-card:hover[b-c48uvxsohl]::before {
            width: 100%;
            opacity: 0.1;
        }

.feature-icon-container[b-c48uvxsohl] {
    width: 80px;
    height: 80px;
    background: rgba(58, 170, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon[b-c48uvxsohl] {
    color: var(--primary-color);
    font-size: 2rem;
}

.feature-card h3[b-c48uvxsohl] {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p[b-c48uvxsohl] {
    color: var(--text-secondary);
}

/* ===== PROBLEMA/SOLUCIÓN ===== */
.problem-solution-grid[b-c48uvxsohl] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.problem-card[b-c48uvxsohl], .solution-card[b-c48uvxsohl] {
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.problem-card[b-c48uvxsohl] {
    border-left: 4px solid #e74c3c;
}

.solution-card[b-c48uvxsohl] {
    border-left: 4px solid var(--primary-color);
}

    .problem-card h3[b-c48uvxsohl], .solution-card h3[b-c48uvxsohl] {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

.problem-point[b-c48uvxsohl], .solution-point[b-c48uvxsohl] {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.problem-icon[b-c48uvxsohl], .solution-icon[b-c48uvxsohl] {
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.problem-icon[b-c48uvxsohl] {
    color: #e74c3c;
}

.solution-icon[b-c48uvxsohl] {
    color: var(--primary-color);
}

/* ===== TIMELINE Y PROCESO ===== */
.process-container[b-c48uvxsohl] {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
}

.timeline-track[b-c48uvxsohl] {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
}

.timeline-progress[b-c48uvxsohl] {
    position: absolute;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transition: height 0.5s ease;
}

.timeline[b-c48uvxsohl] {
    position: relative;
    z-index: 1;
}

.timeline-item[b-c48uvxsohl] {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

    .timeline-item:nth-child(odd)[b-c48uvxsohl] {
        justify-content: flex-end;
    }

.timeline-number[b-c48uvxsohl] {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 15px var(--accent-glow);
}

.timeline-content[b-c48uvxsohl] {
    width: 45%;
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

    .timeline-content h3[b-c48uvxsohl] {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--text-color);
    }

    .timeline-content p[b-c48uvxsohl] {
        color: var(--text-secondary);
        margin-bottom: 1rem;
    }

.security-note[b-c48uvxsohl] {
    background: rgba(58, 170, 53, 0.1);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .security-note i[b-c48uvxsohl] {
        color: var(--primary-color);
    }

/* ===== ROLES Y EXPLICACIONES ===== */
.roles-explanation[b-c48uvxsohl] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.role-card[b-c48uvxsohl] {
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.role-icon[b-c48uvxsohl] {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.connector[b-c48uvxsohl] {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 1rem;
}

/* ===== COMPARACIÓN DE SERVICIOS ===== */
.comparison-intro[b-c48uvxsohl] {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
}

.comparison-table[b-c48uvxsohl] {
    width: 100%;
    margin: 2rem auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.comparison-header[b-c48uvxsohl] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background-color: #f5f5f7;
}

.comparison-row[b-c48uvxsohl] {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.comparison-cell[b-c48uvxsohl] {
    padding: 1.5rem;
    display: flex;
    align-items: center;
}

.comparison-header .comparison-cell[b-c48uvxsohl] {
    font-weight: bold;
    background-color: var(--background-color);
}

.bipe-column[b-c48uvxsohl] {
    background-color: rgba(58, 170, 53, 0.05);
    justify-content: center;
}

.competitor-column[b-c48uvxsohl] {
    background-color: rgba(0, 0, 0, 0.02);
    justify-content: center;
}

.feature[b-c48uvxsohl] {
    font-weight: 600;
}

.check-icon[b-c48uvxsohl], .fa-check-circle[b-c48uvxsohl] {
    color: #3AAA35 !important;
    margin-left: 0.5rem;
}

.times-icon[b-c48uvxsohl], .fa-times-circle[b-c48uvxsohl] {
    color: #e74c3c !important;
    margin-left: 0.5rem;
}

.comparison-cta[b-c48uvxsohl], .audience-cta[b-c48uvxsohl] {
    text-align: center;
    margin-top: 2rem;
}

.comparison-button[b-c48uvxsohl], .audience-button[b-c48uvxsohl] {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(58, 170, 53, 0.3);
}

    .comparison-button:hover[b-c48uvxsohl], .audience-button:hover[b-c48uvxsohl] {
        background-color: #2c8c28;
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(58, 170, 53, 0.4);
    }
/* ===== PLANES Y PRECIOS ===== */
.pricing-intro[b-c48uvxsohl] {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.pricing-cards[b-c48uvxsohl] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.price-card[b-c48uvxsohl] {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    flex: 1 1 280px;
    max-width: 350px;
    position: relative;
}

    .price-card:hover[b-c48uvxsohl] {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

.price-card-header[b-c48uvxsohl] {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(58, 170, 53, 0.1), rgba(76, 175, 80, 0.05));
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-card h3[b-c48uvxsohl] {
    font-size: 1.8rem;
    color: var(--text-color);
}

.price[b-c48uvxsohl] {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .price span[b-c48uvxsohl] {
        font-size: 1rem;
        color: var(--text-secondary);
        margin-left: 5px;
    }

.price-features[b-c48uvxsohl] {
    list-style: none;
    margin: 0;
    padding: 2rem;
    flex-grow: 1;
}

.price-card li[b-c48uvxsohl] {
    margin: 1rem 0;
    color: #4B5563;
    position: relative;
    padding-left: 25px;
}

    .price-card li[b-c48uvxsohl]::before {
        content: '✓';
        color: #3AAA35;
        position: absolute;
        left: 0;
        top: 0;
        font-weight: bold;
    }

.plan-button[b-c48uvxsohl] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

    .plan-button:hover[b-c48uvxsohl] {
        background: #2c8c28;
    }

    .plan-button i[b-c48uvxsohl] {
        transition: transform 0.3s ease;
    }

    .plan-button:hover i[b-c48uvxsohl] {
        transform: translateX(5px);
    }

.price-card.featured[b-c48uvxsohl] {
    transform: scale(1.05);
    border: 2px solid #3AAA35;
}

.plan-badge[b-c48uvxsohl] {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #3AAA35;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.new-feature[b-c48uvxsohl] {
    color: #3AAA35;
    font-weight: bold;
}

.additional-info[b-c48uvxsohl] {
    background-color: rgba(58, 170, 53, 0.1);
    padding: 1rem;
    margin: 0 2rem 2rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

    .additional-info i[b-c48uvxsohl] {
        color: var(--primary-color);
        margin-right: 0.5rem;
    }

/* ===== AUDIENCIA ===== */
.audience-grid[b-c48uvxsohl] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.audience-card[b-c48uvxsohl] {
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
}

    .audience-card.ideal[b-c48uvxsohl] {
        border-top: 4px solid var(--primary-color);
    }

    .audience-card.not-ideal[b-c48uvxsohl] {
        border-top: 4px solid #e74c3c;
    }

.audience-icon[b-c48uvxsohl] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.audience-card.ideal .audience-icon[b-c48uvxsohl] {
    background-color: rgba(58, 170, 53, 0.1);
    color: var(--primary-color);
}

.audience-card.not-ideal .audience-icon[b-c48uvxsohl] {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.audience-card h3[b-c48uvxsohl] {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.audience-card ul[b-c48uvxsohl] {
    list-style: none;
    padding: 0;
}

.audience-card li[b-c48uvxsohl] {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

    .audience-card li i[b-c48uvxsohl] {
        margin-right: 0.5rem;
        color: var(--primary-color);
    }

.audience-card.not-ideal li i[b-c48uvxsohl] {
    color: #e74c3c;
}

/* ===== CALCULADORA DE AHORRO ===== */
.savings-calculator[b-c48uvxsohl] {
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--box-shadow);
}

    .savings-calculator h3[b-c48uvxsohl] {
        text-align: center;
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
    }

.calculator-form[b-c48uvxsohl] {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.calculator-input[b-c48uvxsohl] {
    flex: 1;
    min-width: 300px;
}

    .calculator-input label[b-c48uvxsohl] {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .calculator-input input[b-c48uvxsohl] {
        width: 100%;
        padding: 1rem;
        border: 1px solid rgba(0,0,0,0.1);
        border-radius: 8px;
        font-size: 1.1rem;
    }

.calculator-results[b-c48uvxsohl] {
    flex: 1;
    min-width: 300px;
    background-color: #f5f5f7;
    padding: 1.5rem;
    border-radius: 8px;
}

.result-item[b-c48uvxsohl] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

    .result-item.savings[b-c48uvxsohl], .result-item.savings-yearly[b-c48uvxsohl] {
        color: #3AAA35;
        font-weight: bold;
    }

    .result-item.savings-yearly[b-c48uvxsohl] {
        font-size: 1.2rem;
        border-bottom: none;
    }

/* ===== SECCIONES COMBINADAS (APP/TUTORIAL) ===== */
.combined-section[b-c48uvxsohl] {
    background: linear-gradient(135deg, #f9f9f9, #edf2f7);
}

.two-column-grid[b-c48uvxsohl] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.download-section[b-c48uvxsohl], .video-section[b-c48uvxsohl] {
    background-color: var(--surface-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

    .download-section h3[b-c48uvxsohl], .video-section h3[b-c48uvxsohl] {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        text-align: center;
        color: var(--text-color);
    }

.download-description[b-c48uvxsohl] {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

.download-link[b-c48uvxsohl] {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

    .download-link:hover[b-c48uvxsohl] {
        transform: translateY(-5px);
    }

.app-download[b-c48uvxsohl] {
    background: linear-gradient(135deg, #f5f7fa, #e4e7eb);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .app-download:hover[b-c48uvxsohl] {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

.app-icon[b-c48uvxsohl] {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.app-info[b-c48uvxsohl] {
    display: flex;
    flex-direction: column;
}

.get-app[b-c48uvxsohl] {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.app-name[b-c48uvxsohl] {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-color);
    margin-top: 0.2rem;
}

.video-container[b-c48uvxsohl] {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

    .video-container iframe[b-c48uvxsohl] {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

/* ===== TESTIMONIOS Y CLIENTES ===== */
.testimonials-section[b-c48uvxsohl] {
    margin-bottom: 4rem;
}

.testimonials-grid[b-c48uvxsohl] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card[b-c48uvxsohl] {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

    .testimonial-card:hover[b-c48uvxsohl] {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.quote-icon[b-c48uvxsohl] {
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-content p[b-c48uvxsohl] {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author[b-c48uvxsohl] {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
}

    .testimonial-author h4[b-c48uvxsohl] {
        color: var(--text-color);
        margin-bottom: 0.25rem;
    }

    .testimonial-author span[b-c48uvxsohl] {
        color: var(--text-secondary);
        font-size: 0.9rem;
    }

.clients-section[b-c48uvxsohl] {
    margin-top: 4rem;
}

    .clients-section h3[b-c48uvxsohl] {
        text-align: center;
        margin-bottom: 2rem;
        font-size: 1.5rem;
        color: var(--text-color);
    }

.carousel-container[b-c48uvxsohl] {
    background-color: var(--surface-color);
    padding: 2rem 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.carousel[b-c48uvxsohl] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-track[b-c48uvxsohl] {
    display: flex;
    align-items: center;
}

    .carousel-track.scroll[b-c48uvxsohl] {
        animation: scroll-b-c48uvxsohl 20s linear infinite;
    }

    .carousel-track.static[b-c48uvxsohl] {
        justify-content: center;
        gap: 2rem;
    }

.client-logo[b-c48uvxsohl] {
    width: 150px;
    height: auto;
    margin: 0 2rem;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

    .client-logo:hover[b-c48uvxsohl] {
        filter: grayscale(0%);
        transform: scale(1.1);
    }

/* ===== PREGUNTAS FRECUENTES ===== */
.faq-container[b-c48uvxsohl] {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.faq-item[b-c48uvxsohl] {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

    .faq-item:hover[b-c48uvxsohl] {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .faq-item h3[b-c48uvxsohl] {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--text-color);
    }

    .faq-item p[b-c48uvxsohl] {
        color: var(--text-secondary);
    }

/* ===== CONTACTO ===== */
.contact-options[b-c48uvxsohl] {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.contact-card[b-c48uvxsohl] {
    background-color: var(--surface-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    max-width: 500px;
    transition: all 0.3s ease;
}

    .contact-card:hover[b-c48uvxsohl] {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .contact-card h3[b-c48uvxsohl] {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: var(--text-color);
    }

    .contact-card p[b-c48uvxsohl] {
        color: var(--text-secondary);
        margin-bottom: 2rem;
    }

.whatsapp-button[b-c48uvxsohl] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

    .whatsapp-button[b-c48uvxsohl]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: 0.5s;
    }

    .whatsapp-button:hover[b-c48uvxsohl] {
        background: #128C7E;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
    }

        .whatsapp-button:hover[b-c48uvxsohl]::before {
            left: 100%;
        }

/* ===== FOOTER ===== */
.footer[b-c48uvxsohl] {
    background-color: #111827 !important;
    color: white !important;
    padding: 4rem 0 !important;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer-content[b-c48uvxsohl] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.footer-logo[b-c48uvxsohl] {
    display: flex;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.copyright[b-c48uvxsohl] {
    color: #e2e8f0;
    font-size: 1.1rem;
    text-align: center;
}

.credits[b-c48uvxsohl] {
    color: #94a3b8;
    font-size: 0.9rem;
    text-align: center;
}

.footer-bg[b-c48uvxsohl] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

    .footer-bg[b-c48uvxsohl]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(58, 170, 53, 0.1), transparent);
    }
/* ===== ANIMACIONES ===== */
@keyframes fadeIn-b-c48uvxsohl {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp-b-c48uvxsohl {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown-b-c48uvxsohl {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-b-c48uvxsohl {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float-b-c48uvxsohl {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes rainFall-b-c48uvxsohl {
    0% {
        top: -50px;
        transform: rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.7;
    }

    100% {
        top: 110%;
        transform: rotate(360deg);
        opacity: 0;
    }
}

@keyframes scroll-b-c48uvxsohl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes bounce-b-c48uvxsohl {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.animate__fadeIn[b-c48uvxsohl] {
    animation: fadeIn-b-c48uvxsohl 1s ease;
}

.animate__fadeInDown[b-c48uvxsohl] {
    animation: fadeInDown-b-c48uvxsohl 0.5s ease;
}

.timeline-item.active .timeline-content[b-c48uvxsohl] {
    animation: fadeInUp-b-c48uvxsohl 0.5s ease forwards;
}

/* Glassmorphism (usado en HTML) */
.glassmorphism[b-c48uvxsohl] {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 1200px) {
    .main-heading[b-c48uvxsohl] {
        font-size: 3rem;
    }

    .section-header[b-c48uvxsohl] {
        font-size: 2.2rem;
    }
}

@media (max-width: 1100px) {
    .hero-row[b-c48uvxsohl] {
        justify-content: center;
        text-align: center;
    }

    .hero-text[b-c48uvxsohl] {
        max-width: 100%;
    }

    .hero-cta[b-c48uvxsohl] {
        justify-content: center;
    }

    .hero-features[b-c48uvxsohl] {
        justify-content: center;
    }
}

@media (max-width: 1023px) {
    .navbar-menu[b-c48uvxsohl] {
        background-color: var(--navbar-bg) !important;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        padding: 1rem 0;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
    }

    .navbar-item[b-c48uvxsohl] {
        color: white !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.8rem 1.5rem !important;
    }

        .navbar-item.login-button[b-c48uvxsohl] {
            margin: 1rem 1.5rem;
            text-align: center;
        }

    .main-heading[b-c48uvxsohl] {
        font-size: 2.5rem;
    }

    .main-subtitle[b-c48uvxsohl] {
        font-size: 1.3rem;
    }

    .timeline-item[b-c48uvxsohl] {
        flex-direction: column;
        align-items: center;
    }

    .timeline-content[b-c48uvxsohl] {
        width: 80%;
        margin-top: 2rem;
    }

    .timeline-number[b-c48uvxsohl] {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }

    .timeline-track[b-c48uvxsohl] {
        display: none;
    }

    .two-column-grid[b-c48uvxsohl] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar-menu.is-active[b-c48uvxsohl] {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        /* Cambiamos el fondo a uno completamente opaco */
        background-color: #151C2E !important; /* Versión opaca de tu color de navbar */
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        padding: 1rem 0;
        animation: slideDown-b-c48uvxsohl 0.3s ease;
        z-index: 900;
    }
        /* Mejoramos también el contraste de los items del menú */
        .navbar-menu.is-active .navbar-item[b-c48uvxsohl] {
            color: white !important;
            font-weight: 600;
            padding: 1rem 1.5rem !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: block;
            width: 100%;
        }

            .navbar-menu.is-active .navbar-item:hover[b-c48uvxsohl] {
                background-color: #2c3548 !important; /* Un tono más claro para el hover */
            }

            .navbar-menu.is-active .navbar-item.login-button[b-c48uvxsohl] {
                margin: 1rem auto;
                max-width: 90%;
                text-align: center;
            }
            .navbar-menu.is-active .navbar-item.docs-button[b-c48uvxsohl] {
                margin: 1rem auto;
                max-width: 90%;
                text-align: center;
            }

    @keyframes slideDown-b-c48uvxsohl {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .navbar[b-c48uvxsohl] {
        padding: 0.5rem 1rem !important;
    }

    #hero[b-c48uvxsohl] {
        padding: 100px 0 40px;
    }

    .main-heading[b-c48uvxsohl] {
        font-size: 2.5rem;
    }

    .main-subtitle[b-c48uvxsohl] {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-visual[b-c48uvxsohl] {
        margin-top: 2rem;
    }

    .hero-image-container[b-c48uvxsohl] {
        padding: 1.5rem;
    }

    .users-count[b-c48uvxsohl] {
        left: 0;
        bottom: 2rem;
        padding: 0.5rem 1rem;
    }

    .section-header[b-c48uvxsohl] {
        font-size: 2rem;
    }

    .features[b-c48uvxsohl], .security-features[b-c48uvxsohl] {
        grid-template-columns: 1fr;
    }

    .problem-solution-grid[b-c48uvxsohl], .audience-grid[b-c48uvxsohl] {
        grid-template-columns: 1fr;
    }

    .pricing-cards[b-c48uvxsohl] {
        justify-content: center;
    }

    .price-card[b-c48uvxsohl] {
        width: 100%;
        max-width: 350px;
    }

        .price-card.featured[b-c48uvxsohl] {
            transform: none;
        }

    .timeline-content[b-c48uvxsohl] {
        width: 90%;
    }

    .client-logo[b-c48uvxsohl] {
        width: 120px;
        margin: 0 1rem;
    }

    .comparison-row[b-c48uvxsohl], .comparison-header[b-c48uvxsohl] {
        grid-template-columns: 1fr;
    }

    .comparison-header[b-c48uvxsohl] {
        display: none;
    }

    .comparison-cell[b-c48uvxsohl] {
        text-align: center;
        justify-content: center;
    }

    .feature[b-c48uvxsohl] {
        background-color: #f5f5f7;
        font-weight: 700;
    }

    .calculator-form[b-c48uvxsohl] {
        flex-direction: column;
    }

    /* Optimizaciones para "Cómo Funciona" */
    .roles-explanation[b-c48uvxsohl] {
        flex-direction: column;
        gap: 2rem;
    }

    .role-card[b-c48uvxsohl] {
        width: 100%;
        max-width: 100%;
    }

    .connector[b-c48uvxsohl] {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .process-container[b-c48uvxsohl] {
        margin: 3rem auto;
    }

    .timeline-item[b-c48uvxsohl] {
        flex-direction: column;
        align-items: center;
        margin-bottom: 4rem;
        text-align: center;
    }

    .timeline-number[b-c48uvxsohl] {
        margin-bottom: 1.5rem;
        position: static;
        transform: none;
    }

    .timeline-content[b-c48uvxsohl] {
        width: 100%;
        padding: 1.5rem;
    }

    .security-note[b-c48uvxsohl] {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 576px) {
    #hero[b-c48uvxsohl] {
        min-height: 600px;
    }

    .main-heading[b-c48uvxsohl] {
        font-size: 2rem;
    }

    .main-subtitle[b-c48uvxsohl] {
        font-size: 1.1rem;
        margin: 1rem auto 1.5rem;
    }

    .hero-cta[b-c48uvxsohl] {
        flex-direction: column;
        width: 100%;
    }

    .cta-button[b-c48uvxsohl], .secondary-cta[b-c48uvxsohl] {
        width: 100%;
        justify-content: center;
    }

    .hero-feature[b-c48uvxsohl] {
        width: 100%;
        justify-content: center;
    }

    .hero-image-container[b-c48uvxsohl] {
        padding: 1rem;
    }

    .users-count[b-c48uvxsohl] {
        transform: scale(0.9);
    }

    .section-header[b-c48uvxsohl] {
        font-size: 1.8rem;
    }

    .feature-card[b-c48uvxsohl], .timeline-content[b-c48uvxsohl], .price-card-header[b-c48uvxsohl], .contact-card[b-c48uvxsohl],
    .download-section[b-c48uvxsohl], .video-section[b-c48uvxsohl], .faq-item[b-c48uvxsohl], .testimonial-card[b-c48uvxsohl] {
        padding: 1.5rem;
    }

    .feature-icon-container[b-c48uvxsohl], .security-icon-container[b-c48uvxsohl] {
        width: 60px;
        height: 60px;
    }

    .security-features[b-c48uvxsohl] {
        gap: 1rem;
    }
}
.navbar-item.docs-button[b-c48uvxsohl] {
    background: linear-gradient(to right, #2c3e50, #3498db) !important;
    color: white !important;
    border-radius: 30px;
    padding: 0.5rem 1.5rem !important;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .navbar-item.docs-button[b-c48uvxsohl]::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: 30px;
        background: #3498db;
        z-index: -1;
        opacity: 0.3;
        filter: blur(6px);
        transition: all 0.3s ease;
    }

    .navbar-item.docs-button:hover[b-c48uvxsohl] {
        background: linear-gradient(to right, #34495e, #2980b9) !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
    }

        .navbar-item.docs-button:hover[b-c48uvxsohl]::after {
            opacity: 0.5;
            filter: blur(8px);
        }

    .navbar-item.docs-button i[b-c48uvxsohl] {
        font-size: 1rem;
    }

@media (max-width: 1023px) {
    .navbar-item.docs-button[b-c48uvxsohl] {
        margin: 1rem 1.5rem;
        text-align: center;
        justify-content: center;
    }
}
/* ===== CARRUSEL DE LOGOS SIMPLIFICADO ===== */
.carousel-container[b-c48uvxsohl] {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.carousel[b-c48uvxsohl] {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track[b-c48uvxsohl] {
    display: flex;
    align-items: center;
    justify-content: center; /* Para modo estático */
    flex-wrap: wrap; /* Por defecto envolver */
    transition: transform 0.3s ease;
}

    /* Cuando el carrusel está activo */
    .carousel-track.active-carousel[b-c48uvxsohl] {
        flex-wrap: nowrap;
        width: max-content;
        justify-content: flex-start;
    }

.client-logo[b-c48uvxsohl] {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin: 0 30px;
    flex-shrink: 0;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

    .client-logo:hover[b-c48uvxsohl] {
        filter: grayscale(0%);
        transform: scale(1.1);
    }

@media (max-width: 768px) {
    .client-logo[b-c48uvxsohl] {
        height: 60px;
        margin: 0 20px;
    }
}

/* ===== BANNER DE MIGRACIÓN ===== */
.migration-banner[b-c48uvxsohl] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ff9800;
    color: white;
    padding: 8px 15px;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.migration-content[b-c48uvxsohl] {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.migration-button[b-c48uvxsohl] {
    background-color: white;
    color: #ff9800;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    margin-left: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.migration-button:hover[b-c48uvxsohl] {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

.close-banner[b-c48uvxsohl] {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 10px;
    margin-left: auto;
}

/* Ajustar navbar cuando el banner está visible */
body.has-migration-banner .navbar[b-c48uvxsohl] {
    top: 40px; /* Ajustar según la altura de tu banner */
}
/* /Pages/WMenu.razor.rz.scp.css */
/* Estilos generales del dashboard */
.dashboard-box[b-b9xf9ddagz] {
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    background: white;
    animation: fadeIn-b-b9xf9ddagz 0.5s ease-out;
    padding: 1rem;
}

/* Header y branding */
.dashboard-header[b-b9xf9ddagz] {
    padding: 1rem;
    margin: -1rem -1rem 1rem -1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px 15px 0 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.brand-container[b-b9xf9ddagz] {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.brand-logo[b-b9xf9ddagz] {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    flex-shrink: 0;
}

.brand-info[b-b9xf9ddagz] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.brand-title[b-b9xf9ddagz] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2E7D32;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.brand-divider[b-b9xf9ddagz] {
    color: #6c757d;
    font-weight: 300;
}

.brand-subtitle[b-b9xf9ddagz] {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* Contenedores de secciones */
.business-info-container[b-b9xf9ddagz],
.report-controls-container[b-b9xf9ddagz],
.management-section[b-b9xf9ddagz],
.configuration-panel[b-b9xf9ddagz] {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 1rem 0;
}

.export-controls[b-b9xf9ddagz] {
    padding: 0.5rem;
    margin: 1rem 0;
}

/* Campos de entrada */
.field[b-b9xf9ddagz] {
    margin-bottom: 1rem;
}

.label[b-b9xf9ddagz] {
    color: #363636;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.input[b-b9xf9ddagz] {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.input.is-small[b-b9xf9ddagz] {
    padding: 0.5rem;
    font-size: 0.9rem;
}

.input[readonly][b-b9xf9ddagz] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.input:focus[b-b9xf9ddagz] {
    border-color: #3182ce;
    box-shadow: 0 0 0 2px rgba(49,130,206,0.2);
}

/* Botones */
.button[b-b9xf9ddagz] {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.button.is-small[b-b9xf9ddagz] {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.button.is-link[b-b9xf9ddagz] {
    background-color: #3182ce;
    color: white;
}

.button.is-link:hover[b-b9xf9ddagz] {
    background-color: #2c5282;
}

.button.is-success[b-b9xf9ddagz] {
    background-color: #48c78e;
    color: white;
}

.button.is-success:hover[b-b9xf9ddagz] {
    background-color: #2f855a;
}

.button.is-danger[b-b9xf9ddagz] {
    background-color: #f14668;
    color: white;
}

.button.is-danger:hover[b-b9xf9ddagz] {
    background-color: #cc1f1a;
}

.button.is-info[b-b9xf9ddagz] {
    background-color: #3182ce;
    color: white;
}

.button.is-info:hover[b-b9xf9ddagz] {
    background-color: #2c5282;
}

.button:disabled[b-b9xf9ddagz] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Grupos de botones */
.buttons[b-b9xf9ddagz] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.buttons.is-centered[b-b9xf9ddagz] {
    justify-content: center;
}

/* Tabla y contenedor */
.transactions-table[b-b9xf9ddagz] {
    margin: 1rem 0;
}

.table-container[b-b9xf9ddagz] {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    background: white;
}

.table[b-b9xf9ddagz] {
    margin-bottom: 0;
    width: 100%;
}

.table th[b-b9xf9ddagz] {
    background-color: #f8f9fa;
    color: #2E7D32;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 0.75rem 0.5rem;
    white-space: nowrap;
}

.table td[b-b9xf9ddagz] {
    padding: 0.75rem 0.5rem;
    vertical-align: middle;
}

.payment-logo[b-b9xf9ddagz] {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.payment-logo:hover[b-b9xf9ddagz] {
    transform: scale(1.1);
}

/* Tags modernos */
.tag.is-success[b-b9xf9ddagz] {
    background: linear-gradient(135deg, #43A047 0%, #2E7D32 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(67,160,71,0.2);
    font-size: 0.8rem;
}

.tag.is-small[b-b9xf9ddagz] {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
}

/* Tarjetas de resumen */
.summary-cards[b-b9xf9ddagz] {
    margin: 1rem 0;
}

.summary-card[b-b9xf9ddagz] {
    background: white;
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.summary-card[b-b9xf9ddagz]::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46,125,50,0.05) 0%, transparent 70%);
    transform: rotate(30deg);
}

.summary-card:hover[b-b9xf9ddagz] {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.summary-icon[b-b9xf9ddagz] {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(46,125,50,0.2) 0%, rgba(46,125,50,0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #2E7D32;
    flex-shrink: 0;
}

.summary-data[b-b9xf9ddagz] {
    flex: 1;
    min-width: 0;
}

.summary-value[b-b9xf9ddagz] {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2E7D32;
    word-break: break-word;
}

.summary-label[b-b9xf9ddagz] {
    font-size: 0.8rem;
    color: #757575;
    margin-top: 0.25rem;
}

/* Área del gráfico */
.chart-container[b-b9xf9ddagz] {
    padding: 1rem;
    background: white;
    border-radius: 16px;
    margin: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
}

.chart-content[b-b9xf9ddagz] {
    width: 100%;
    overflow: hidden;
}

/* Tabs para los gráficos */
.chart-tabs[b-b9xf9ddagz] {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.chart-tab[b-b9xf9ddagz] {
    background: rgba(46,125,50,0.1);
    color: #2E7D32;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    min-width: 0;
    flex: 1;
    max-width: 150px;
    justify-content: center;
}

.chart-tab:hover[b-b9xf9ddagz] {
    background: rgba(46,125,50,0.2);
    transform: translateY(-2px);
}

.chart-tab.active[b-b9xf9ddagz] {
    background: #2E7D32;
    color: white;
    box-shadow: 0 4px 15px rgba(46,125,50,0.3);
}

/* Tarjetas de pago */
.payment-summary[b-b9xf9ddagz] {
    margin-top: 1.5rem;
}

.payment-card[b-b9xf9ddagz] {
    background: white;
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.payment-card:hover[b-b9xf9ddagz] {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.payment-large-logo[b-b9xf9ddagz] {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.payment-data[b-b9xf9ddagz] {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.payment-amount[b-b9xf9ddagz] {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2E7D32;
    word-break: break-word;
}

.payment-count[b-b9xf9ddagz] {
    font-size: 0.8rem;
    color: #757575;
    margin-top: 0.5rem;
}

/* Notificaciones */
.notification[b-b9xf9ddagz] {
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.notification-settings[b-b9xf9ddagz] {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
}

.whatsapp-preview[b-b9xf9ddagz] {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.whatsapp-preview:hover[b-b9xf9ddagz] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.notification.is-success.is-light[b-b9xf9ddagz] {
    background-color: #ebf7f0;
    border-left: 4px solid #48c78e;
}

.notification.is-warning[b-b9xf9ddagz] {
    border-left: 4px solid #f6e05e;
    background-color: #fffff0;
}

.notification .icon-text[b-b9xf9ddagz] {
    align-items: center;
    display: flex;
    gap: 0.5rem;
}

/* Paginación */
.pagination[b-b9xf9ddagz] {
    margin: 1rem 0;
}

.pagination-previous[b-b9xf9ddagz],
.pagination-next[b-b9xf9ddagz],
.pagination-link[b-b9xf9ddagz] {
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}

/* Animaciones */
@keyframes fadeIn-b-b9xf9ddagz {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown-b-b9xf9ddagz {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chart-container[b-b9xf9ddagz] {
    animation: fadeIn-b-b9xf9ddagz 0.5s ease-out;
}

.configuration-panel[b-b9xf9ddagz] {
    animation: slideDown-b-b9xf9ddagz 0.3s ease-out;
}

/* Responsive para móviles */
@media screen and (max-width: 768px) {
    /* Ajustes generales */
    .dashboard-box[b-b9xf9ddagz] {
        padding: 0.5rem;
        margin: 0.5rem;
        border-radius: 8px;
    }

    .dashboard-header[b-b9xf9ddagz] {
        padding: 0.75rem;
        margin: -0.5rem -0.5rem 1rem -0.5rem;
    }

    .brand-container[b-b9xf9ddagz] {
        gap: 0.5rem;
    }

    .brand-logo[b-b9xf9ddagz] {
        width: 36px;
        height: 36px;
    }

    .brand-title[b-b9xf9ddagz] {
        font-size: 1.3rem;
    }

    .brand-subtitle[b-b9xf9ddagz] {
        font-size: 0.95rem;
    }

    /* Contenedores de secciones */
    .business-info-container[b-b9xf9ddagz],
    .report-controls-container[b-b9xf9ddagz],
    .management-section[b-b9xf9ddagz],
    .configuration-panel[b-b9xf9ddagz] {
        padding: 0.75rem;
        margin: 0.75rem 0;
    }

    /* Campos y botones */
    .field[b-b9xf9ddagz] {
        margin-bottom: 0.75rem;
    }

    .label[b-b9xf9ddagz] {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .input.is-small[b-b9xf9ddagz] {
        padding: 0.5rem;
        font-size: 0.85rem;
    }

    .button.is-small[b-b9xf9ddagz] {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .button.is-fullwidth-mobile[b-b9xf9ddagz] {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .buttons[b-b9xf9ddagz] {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Tarjetas de resumen */
    .summary-card[b-b9xf9ddagz] {
        padding: 1rem;
        gap: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .summary-icon[b-b9xf9ddagz] {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .summary-value[b-b9xf9ddagz] {
        font-size: 1.1rem;
    }

    .summary-label[b-b9xf9ddagz] {
        font-size: 0.75rem;
    }

    /* Gráficos */
    .chart-container[b-b9xf9ddagz] {
        padding: 0.75rem;
    }

    .chart-tabs[b-b9xf9ddagz] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .chart-tab[b-b9xf9ddagz] {
        width: 100%;
        max-width: none;
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    /* Tarjetas de pago */
    .payment-card[b-b9xf9ddagz] {
        padding: 1rem;
        gap: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .payment-large-logo[b-b9xf9ddagz] {
        width: 45px;
        height: 45px;
    }

    .payment-amount[b-b9xf9ddagz] {
        font-size: 1.1rem;
    }

    .payment-count[b-b9xf9ddagz] {
        font-size: 0.75rem;
    }

    /* Tabla */
    .table th[b-b9xf9ddagz],
    .table td[b-b9xf9ddagz] {
        padding: 0.5rem 0.25rem;
        font-size: 0.8rem;
    }

    .table th[b-b9xf9ddagz] {
        font-size: 0.7rem;
    }

    .payment-logo[b-b9xf9ddagz] {
        width: 30px;
        height: 30px;
    }

    .tag.is-small[b-b9xf9ddagz] {
        font-size: 0.65rem;
        padding: 0.15rem 0.5rem;
    }

    /* Paginación */
    .pagination-previous[b-b9xf9ddagz],
    .pagination-next[b-b9xf9ddagz] {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }

    .pagination-link[b-b9xf9ddagz] {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
}

/* Para pantallas muy pequeñas */
@media screen and (max-width: 480px) {
    .dashboard-box[b-b9xf9ddagz] {
        margin: 0.25rem;
        padding: 0.5rem;
    }

    .brand-logo[b-b9xf9ddagz] {
        width: 32px;
        height: 32px;
    }

    .brand-title[b-b9xf9ddagz] {
        font-size: 1.1rem;
    }

    .brand-subtitle[b-b9xf9ddagz] {
        font-size: 0.85rem;
    }

    .business-info-container[b-b9xf9ddagz],
    .report-controls-container[b-b9xf9ddagz],
    .management-section[b-b9xf9ddagz],
    .configuration-panel[b-b9xf9ddagz] {
        padding: 0.5rem;
        margin: 0.5rem 0;
    }

    .summary-card[b-b9xf9ddagz] {
        padding: 0.75rem;
    }

    .summary-icon[b-b9xf9ddagz] {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .summary-value[b-b9xf9ddagz] {
        font-size: 1rem;
    }

    .chart-container[b-b9xf9ddagz] {
        padding: 0.5rem;
    }

    .payment-card[b-b9xf9ddagz] {
        padding: 0.75rem;
    }

    .payment-large-logo[b-b9xf9ddagz] {
        width: 40px;
        height: 40px;
    }

    .table th[b-b9xf9ddagz],
    .table td[b-b9xf9ddagz] {
        padding: 0.4rem 0.2rem;
        font-size: 0.75rem;
    }
}

/* Estilos para gráficos Radzen */
[b-b9xf9ddagz] .rz-chart {
    background: transparent !important;
}

[b-b9xf9ddagz] .rz-series-item {
    transition: all 0.3s ease;
}

[b-b9xf9ddagz] .rz-bar-series {
    fill: #2E7D32;
    stroke: #1b5e20;
}

[b-b9xf9ddagz] .rz-column-series {
    fill: #48c78e;
    stroke: #2f855a;
}

[b-b9xf9ddagz] .rz-pie-series {
    stroke: #ffffff;
    stroke-width: 2px;
}

[b-b9xf9ddagz] .rz-series-data-label {
    font-weight: 600;
    font-size: 0.75rem;
}

/* Responsive para gráficos */
@media screen and (max-width: 768px) {
    [b-b9xf9ddagz] .rz-series-data-label {
        font-size: 0.7rem;
    }
}

/* Utilidades adicionales */
.is-fullwidth-mobile[b-b9xf9ddagz] {
    width: 100%;
}

@media screen and (min-width: 769px) {
    .is-fullwidth-mobile[b-b9xf9ddagz] {
        width: auto;
    }
}

/* Mejorar el overflow en contenedores */
.table-container[b-b9xf9ddagz] {
    overflow-x: auto;
}

.chart-content[b-b9xf9ddagz] {
    overflow-x: auto;
}

/* Scroll suave para elementos horizontales */
.table-container[b-b9xf9ddagz],
.chart-content[b-b9xf9ddagz] {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e0 #f7fafc;
}

.table-container[b-b9xf9ddagz]::-webkit-scrollbar,
.chart-content[b-b9xf9ddagz]::-webkit-scrollbar {
    height: 6px;
}

.table-container[b-b9xf9ddagz]::-webkit-scrollbar-track,
.chart-content[b-b9xf9ddagz]::-webkit-scrollbar-track {
    background: #f7fafc;
    border-radius: 10px;
}

.table-container[b-b9xf9ddagz]::-webkit-scrollbar-thumb,
.chart-content[b-b9xf9ddagz]::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 10px;
}

.table-container[b-b9xf9ddagz]::-webkit-scrollbar-thumb:hover,
.chart-content[b-b9xf9ddagz]::-webkit-scrollbar-thumb:hover {
    background: #a0aec0;
}
/* /Pages/WPrincipal.razor.rz.scp.css */
/* Estilos generales del dashboard */
.dashboard-box[b-vtlso0m7ts] {
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    background: white;
}

/* Header y branding */
.dashboard-header[b-vtlso0m7ts] {
    padding: 1.5rem;
    margin: -1.25rem -1.25rem 1.5rem -1.25rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px 15px 0 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.brand-container[b-vtlso0m7ts] {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.brand-logo[b-vtlso0m7ts] {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    flex-shrink: 0; /* Evita que el logo se encoja */
}

.brand-info[b-vtlso0m7ts] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap; /* Evita el salto de línea */
}

.brand-title[b-vtlso0m7ts] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2E7D32;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.brand-divider[b-vtlso0m7ts] {
    color: #6c757d;
    font-weight: 300;
}

.brand-subtitle[b-vtlso0m7ts] {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* Controles del dashboard */
.dashboard-controls[b-vtlso0m7ts] {
    display: flex;
    flex-direction: column; /* Cambio a columna para mejor organización */
    align-items: center; /* Centrar elementos horizontalmente */
    margin-bottom: 1.5rem;
    gap: 1rem;
    padding: 0 1rem;
    width: 100%; /* Asegurar que ocupe todo el ancho */
}

.buttons-container[b-vtlso0m7ts] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Estado de conexión del dispositivo */
.connection-status[b-vtlso0m7ts] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-direction: column; /* Alineación en columna para incluir el mensaje */
    text-align: center; /* Centrar el texto */
}

    .connection-status.is-connected[b-vtlso0m7ts] {
        background-color: #48c78e;
        color: white;
        box-shadow: 0 2px 4px rgba(72, 199, 142, 0.2);
    }

    .connection-status.is-disconnected[b-vtlso0m7ts] {
        background-color: #f14668;
        color: white;
        box-shadow: 0 2px 4px rgba(241, 70, 104, 0.2);
    }

    .connection-status i[b-vtlso0m7ts] {
        font-size: 1.1rem;
    }

/* Mensaje de dispositivo desconectado */
.disconnected-message[b-vtlso0m7ts] {
    font-size: 0.9rem;
    color: #fff;
    margin-top: 0.5rem;
    font-weight: 400;
}

/* Efecto de pulso */
.pulse[b-vtlso0m7ts] {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    animation: pulse-b-vtlso0m7ts 2s infinite;
}

@keyframes pulse-b-vtlso0m7ts {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Botón de ayuda */
.help-button[b-vtlso0m7ts] {
    transition: all 0.3s ease;
    margin: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

    .help-button:hover[b-vtlso0m7ts] {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

/* Tabla y logos de pago */
.table-wrapper[b-vtlso0m7ts] {
    margin: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.payment-logo[b-vtlso0m7ts] {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

    .payment-logo:hover[b-vtlso0m7ts] {
        transform: scale(1.1);
    }

/* Modal */
.modal-card[b-vtlso0m7ts] {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.modal-card-head[b-vtlso0m7ts] {
    background-color: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    padding: 1.5rem;
}

.modal-card-title[b-vtlso0m7ts] {
    color: #363636;
    font-weight: 600;
    font-size: 1.25rem;
}

.modal-card-body[b-vtlso0m7ts] {
    padding: 2rem;
}

/* Notificaciones y estados */
.notification[b-vtlso0m7ts] {
    border-radius: 8px;
    margin: 1rem;
}

.tag[b-vtlso0m7ts] {
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

/* Responsive */
@media screen and (max-width: 768px) {

    .dashboard-header[b-vtlso0m7ts] {
        padding: 0.75rem;
    }

    .brand-container[b-vtlso0m7ts] {
        gap: 0.5rem;
        width: 100%;
        justify-content: center; /* Cambiado a center para centrar todo el contenido */
    }

    .brand-logo[b-vtlso0m7ts] {
        width: 32px;
        height: 32px;
    }

    .dashboard-controls[b-vtlso0m7ts] {
        flex-direction: column;
        align-items: stretch;
    }

    .buttons-container[b-vtlso0m7ts] {
        justify-content: center;
    }

    .brand-info[b-vtlso0m7ts] {
        flex-direction: row !important; /* Fuerza la dirección en fila */
        align-items: center !important; /* Centra verticalmente */
        gap: 0.5rem;
        flex-wrap: nowrap;
        white-space: nowrap;
        justify-content: center; /* Añadido para centrar el contenido interno */
    }

    .brand-divider[b-vtlso0m7ts] {
        display: inline-block !important; /* Muestra el divisor */
        margin: 0 0.3rem;
        font-size: 1rem;
    }
    .brand-title[b-vtlso0m7ts] {
        font-size: 1.1rem;
        margin: 0;
        text-align: center; /* Asegura que el texto esté centrado */
    }
    .brand-subtitle[b-vtlso0m7ts] {
        font-size: 0.9rem;
        margin: 0;
        text-align: center; /* Asegura que el texto esté centrado */
    }

    .connection-status[b-vtlso0m7ts] {
        justify-content: center;
    }

    .table-wrapper[b-vtlso0m7ts] {
        margin: 0.5rem;
    }

    /* Asegura que no haya saltos de línea */
    .brand-info > *[b-vtlso0m7ts] {
        display: inline-block;
        vertical-align: middle;
    }
    /* Ajusta el contenedor principal para mantener todo centrado */
    .dashboard-header[b-vtlso0m7ts] {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Para pantallas muy pequeñas */
@media screen and (max-width: 360px) {
    .brand-logo[b-vtlso0m7ts] {
        width: 28px;
        height: 28px;
    }

    .brand-title[b-vtlso0m7ts] {
        font-size: 1rem;
    }

    .brand-subtitle[b-vtlso0m7ts] {
        font-size: 0.8rem;
    }
}
/* Animaciones */
.dashboard-box[b-vtlso0m7ts] {
    animation: fadeIn-b-vtlso0m7ts 0.5s ease-out;
}

@keyframes fadeIn-b-vtlso0m7ts {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mejoras en la tabla */
.table[b-vtlso0m7ts] {
    margin-bottom: 0;
    outline: none; /* Remove focus outline */
}

    .table th[b-vtlso0m7ts] {
        background-color: #f8f9fa;
        color: #2E7D32;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .table td[b-vtlso0m7ts] {
        vertical-align: middle;
    }

/* Estilos para el estado de tiempo */
.tag.is-success[b-vtlso0m7ts] {
    background-color: #48c78e;
    color: white;
}

.tag.is-warning[b-vtlso0m7ts] {
    background-color: #ffe08a;
    color: rgba(0, 0, 0, 0.7);
}

.tag.is-dark[b-vtlso0m7ts] {
    background-color: #363636;
    color: white;
}
/* Contenedor principal de acciones */
.dashboard-actions[b-vtlso0m7ts] {
    width: 100%; /* Ocupar todo el ancho disponible */
    max-width: 600px; /* Limitar el ancho máximo */
    display: flex;
    justify-content: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 0 auto; /* Centrar el contenedor */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.action-group[b-vtlso0m7ts] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%; /* Ocupar todo el ancho del contenedor padre */
}

/* Estilos base para los botones de acción */
.action-button[b-vtlso0m7ts] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
    color: #4a5568;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    min-width: 140px; /* Ancho mínimo para mantener consistencia */
    justify-content: center;
    outline: none; /* Remove focus outline */
}

/* Icono wrapper */
.icon-wrapper[b-vtlso0m7ts] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px; /* Tamaño reducido */
    height: 20px;
}

/* Estilos específicos para cada botón */
.notification-button[b-vtlso0m7ts] {
    background: #ebf8ff;
    color: #3182ce;
}

    .notification-button.is-active[b-vtlso0m7ts] {
        background: #3182ce;
        color: white;
    }

.refresh-button[b-vtlso0m7ts] {
    background: #f0fff4;
    color: #38a169;
}

    .refresh-button:hover[b-vtlso0m7ts] {
        background: #38a169;
        color: white;
    }

.logout-button[b-vtlso0m7ts] {
    background: #fff5f5;
    color: #e53e3e;
}

    .logout-button:hover[b-vtlso0m7ts] {
        background: #e53e3e;
        color: white;
    }

/* Animación para el icono de actualizar */
.refresh-button.is-loading .fa-sync-alt[b-vtlso0m7ts] {
    animation: spin-b-vtlso0m7ts 1s linear infinite;
}

/* Ya no aplicamos la animación en hover */
.refresh-button:hover .fa-sync-alt[b-vtlso0m7ts] {
    animation: none;
}
/* Opcional: Deshabilitar el botón durante la carga */
.refresh-button.is-loading[b-vtlso0m7ts] {
    cursor: wait;
    opacity: 0.8;
}
@keyframes spin-b-vtlso0m7ts {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive mejorado */
@media screen and (max-width: 768px) {
    .dashboard-actions[b-vtlso0m7ts] {
        padding: 0.75rem;
        margin: 0.75rem;
        max-width: 100%; /* En móvil ocupar todo el ancho */
    }

    .action-group[b-vtlso0m7ts] {
        gap: 0.5rem;
        width: 100%;
    }

    .action-button[b-vtlso0m7ts] {
        min-width: auto; /* Eliminar ancho mínimo en móvil */
        width: auto; /* Permitir que el botón se ajuste al contenido */
        font-size: 0.8rem;
        flex: 0 1 auto;
        padding: 0.5rem 0.75rem;
    }

    .button-text[b-vtlso0m7ts] {
        display: none; /* Ocultar texto en móviles */
    }

    .icon-wrapper[b-vtlso0m7ts] {
        margin: 0;
        width: 16px; /* Iconos más pequeños en móvil */
        height: 16px;
        font-size: 1rem;
    }

    /* Hacer los botones más compactos en móvil */
    .action-button[b-vtlso0m7ts] {
        flex: 0 1 auto; /* Evitar que los botones se estiren */
        padding: 0.5rem 0.75rem;
    }
}

/* Transiciones suaves */
.action-button[b-vtlso0m7ts] {
    position: relative;
    overflow: hidden;
}

    .action-button[b-vtlso0m7ts]::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.2);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .action-button:hover[b-vtlso0m7ts]::after {
        transform: translateX(0);
    }

/* Tooltips para móvil */
@media screen and (max-width: 768px) {
    .action-button[b-vtlso0m7ts] {
        position: relative;
    }

        .action-button[b-vtlso0m7ts]::before {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            padding: 0.25rem 0.5rem;
            background: rgba(0,0,0,0.8);
            color: white;
            font-size: 0.75rem;
            border-radius: 4px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .action-button:hover[b-vtlso0m7ts]::before {
            opacity: 1;
        }
}

@media screen and (max-width: 768px) {
    .dashboard-box[b-vtlso0m7ts] {
        margin: 0 1rem;
        border-radius: 8px;
    }
}

/* Aplicar a todas las pantallas */
.column.is-two-thirds[b-vtlso0m7ts] {
    width: 100% !important;
}

