/* /Layout/MainLayout.razor.rz.scp.css */

.page[b-tjb18e0c7w] {
    position: relative;
    display: flex;
    min-height: 100vh;
    background-image: 
        linear-gradient(135deg, rgba(17, 24, 39, 0.85) 0%, rgba(37, 140, 251, 0.4) 100%),
        url(/images/fondo.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    flex-direction: column;
}

@media (max-width: 768px) {
    .page[b-tjb18e0c7w] {
        background-attachment: scroll;
    } 
     }   
      
    



main[b-tjb18e0c7w] {
    flex: 1;
    min-width: 0;
    background-color: transparent;
}

/* El NavMenu: podés dejarle el gradiente o pasarlo a negro, como prefieras */
.sidebar[b-tjb18e0c7w] {
    background-image: linear-gradient(180deg, #052767 0%, #121212 70%);
}

/* ESTO ERA LO QUE TE MOLESTABA: La barra de arriba */
.top-row[b-tjb18e0c7w] {
    background-color: #1a1a1a !important; /* Gris muy oscuro, casi negro */
    border-bottom: 1px solid #333;        /* Borde sutil */
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row[b-tjb18e0c7w]  a, .top-row[b-tjb18e0c7w]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
    color: #ccc; /* Texto claro */
}

.top-row[b-tjb18e0c7w]  a:hover, .top-row[b-tjb18e0c7w]  .btn-link:hover {
    text-decoration: underline;
    color: #258cfb;
}

@media (max-width: 640.98px) {
    .top-row[b-tjb18e0c7w] {
        justify-content: space-between;
    }
}

@media (min-width: 641px) {
    .page[b-tjb18e0c7w] {
        flex-direction: row;
    }

    .sidebar[b-tjb18e0c7w] {
        width: 320px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-tjb18e0c7w] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    /* MATAMOS EL PADDING QUE TE HACE EL MARCO BLANCO */
    .top-row[b-tjb18e0c7w], article[b-tjb18e0c7w] {
        padding-left: 0 !important; 
        padding-right: 0 !important;
    }
}
/* =========================================================
   BOTÓN FLOTANTE WHATSAPP
========================================================= */
.wa-button[b-tjb18e0c7w] {

    /* Mantiene el botón fijo aunque se haga scroll */
    position: fixed;

    /* Distancia desde la derecha */
    right: 24px;

    /* Distancia desde abajo */
    bottom: 24px;

    /* Tamaño del círculo */
    width: 64px;
    height: 64px;

    /* Convierte el contenedor en círculo */
    border-radius: 50%;

    /* Color oficial WhatsApp */
    background-color: #25D366;

    /* Centrado del icono interno */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Sombra externa */
    box-shadow:
        0 8px 24px rgba(0,0,0,0.25);

    /* Mantiene el botón por encima de otros elementos */
    z-index: 9999;

    /* Animaciones suaves */
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

/* =========================================================
   EFECTO HOVER
========================================================= */
.wa-button:hover[b-tjb18e0c7w] {

    /* Pequeño zoom al pasar el mouse */
    transform: scale(1.08);

    /* Sombra más intensa */
    box-shadow:
        0 12px 32px rgba(0,0,0,0.35);
}

/* =========================================================
   ICONO SVG INTERNO
========================================================= */
.wa-icon[b-tjb18e0c7w] {

    /* Tamaño del icono */
    width: 34px;
    height: 34px;
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* ==================== ESTRUCTURA BASE DEL NAV ==================== */

.top-row[b-2dbn6txa10] {
    min-height: 3.5rem;
    background-color: #0A0912;
}

.navbar-brand[b-2dbn6txa10] {
    font-size: 1.1rem;
}

/* ==================== LOGO DEL NAV ==================== */

.navbar-logo[b-2dbn6txa10] {
    height: 56px;
    width: auto;
    margin-right: 8px;
    border-radius: 4px;
}

/* ==================== BOTON HAMBURGUESA ==================== */
.navbar-toggler[b-2dbn6txa10] {
    border: none;
    border-radius: 10px;

    background: linear-gradient(
    45deg,
    #000000,
    #00ff88,
    #000000,
    #0066ff,
    #000000
   );

    background-size: 300% 300%;
    animation: neonFlow-b-2dbn6txa10 4s ease infinite;

    padding: 0.5rem 0.75rem;

    box-shadow:
        0 0 10px rgba(0,255,136,.35),
        0 0 20px rgba(0,102,255,.25);

    transition: all 0.3s ease;
}

.navbar-toggler:hover[b-2dbn6txa10] {
    transform: scale(1.05);

    box-shadow:
        0 0 15px rgba(0,255,136,.6),
        0 0 25px rgba(0,102,255,.5);
}

@keyframes neonFlow-b-2dbn6txa10 {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}



/* ==================== ICONOS GENERALES ==================== */
.bi[b-2dbn6txa10] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

/* ==================== ICONOS SVG DEL MENU ==================== */
.bi-person-circle-nav-menu[b-2dbn6txa10] {
    background-image: url('/IconosBasicos/person-circle.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    filter: brightness(0) invert(1);
}

.bi-house-door-fill-nav-menu[b-2dbn6txa10] {
    background-image: url("/IconosBasicos/house-door.svg");
}





.bi-cash-coin[b-2dbn6txa10] {
    background-image: url('/IconosBasicos/cash-coin.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    filter: brightness(0) invert(1);
}

.bi-person-badge-nav-menu[b-2dbn6txa10] {
    background-image: url('/IconosBasicos/person-vcard.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    filter: brightness(0) invert(1);
}

/* ==================== ITEMS Y LINKS DE NAVEGACION ==================== */
.nav-item[b-2dbn6txa10] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-2dbn6txa10] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-2dbn6txa10] {
        padding-bottom: 1rem;
    }

    .nav-item[b-2dbn6txa10]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-2dbn6txa10]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-2dbn6txa10]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

/* ==================== BLOQUE PROMOCIONAL DEL MENU ==================== */
.promo-card-link[b-2dbn6txa10] {
    display: block !important;
    height: auto !important;
    line-height: normal !important;
    text-decoration: none;
    padding: 0 !important;
    border-radius: 12px;
    overflow: hidden;
}

.promo-card-link:hover[b-2dbn6txa10] {
    background-color: transparent !important;
}

.promo-card[b-2dbn6txa10] {
    background: linear-gradient(160deg, rgba(20, 26, 42, 0.95), rgba(10, 14, 24, 0.95));
    border: 1px solid rgba(134, 161, 255, 0.24);
    border-radius: 12px;
    padding: 0.65rem;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.promo-card-link:hover .promo-card[b-2dbn6txa10] {
    transform: translateY(-2px);
    border-color: rgba(134, 161, 255, 0.46);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

.promo-card-head[b-2dbn6txa10] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
}

.promo-card-title[b-2dbn6txa10] {
    margin: 0;
    font-size: 0.7rem;
    letter-spacing: 0.45px;
    text-transform: uppercase;
    color: #dce6ff;
    font-weight: 700;
}

.promo-card-chip[b-2dbn6txa10] {
    font-size: 0.62rem;
    letter-spacing: 0.4px;
    color: #eff4ff;
    background-color: rgba(54, 105, 255, 0.55);
    border: 1px solid rgba(174, 199, 255, 0.45);
    border-radius: 999px;
    padding: 0.16rem 0.45rem;
    text-transform: uppercase;
    line-height: 1;
}

.promo-card-media[b-2dbn6txa10] {
    width: 100%;
    min-height: 120px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem;
}

.promo-card-image[b-2dbn6txa10] {
    width: 100%;
    max-height: 112px;
    object-fit: contain;
    border-radius: 6px;
    display: block;
}

/* ==================== COMPORTAMIENTO RESPONSIVE (DESKTOP) ==================== */
@media (min-width: 641px) {
    .navbar-toggler[b-2dbn6txa10] {
        display: none;
    }

    .collapse[b-2dbn6txa10] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-2dbn6txa10] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
        width: 320px;   /* probá 300–360px */
    }
}

/* ==================== ESTADO DE USUARIO ==================== */
.navbar-brand[b-2dbn6txa10] {
    margin-right: 4px !important;
}

/* Punto indicador base */
.status-dot[b-2dbn6txa10] {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 5px;
}

/* Estado online con pulso */
.online[b-2dbn6txa10] {
    background-color: #28a745;
    box-shadow: 0 0 0 rgba(40, 167, 69, 0.4);
    animation: pulse-green-b-2dbn6txa10 2s infinite;
}

/* Estado offline */
.offline[b-2dbn6txa10] {
    background-color: #6c757d;
    opacity: 0.6;
}

/* Animacion de pulso del indicador */
@keyframes pulse-green-b-2dbn6txa10 {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(40, 167, 69, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}
/* /Pages/Components/AsistenteWidget.razor.rz.scp.css */
.chat-button[b-qmrylot2d1] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #111;
    color: white;
    border: none;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

.chat-button:hover[b-qmrylot2d1] {
    transform: scale(1.05);
}

.chat-window[b-qmrylot2d1] {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    height: 420px;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 1000;
}

.chat-header[b-qmrylot2d1] {
    padding: 12px;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid #eee;
}

.chat-welcome[b-qmrylot2d1] {
    margin: 0;
    font-size: 13px;
    color: #f5f5f5;
    line-height: 1.4;
    font-weight: 500;
}

.chat-messages[b-qmrylot2d1] {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    font-size: 14px;
}

.chat-input-container[b-qmrylot2d1] {
    display: flex;
    border-top: 1px solid #eee;
}

.chat-input-container input[b-qmrylot2d1] {
    flex: 1;
    border: none;
    padding: 8px;
    outline: none;
}

.chat-input-container button[b-qmrylot2d1] {
    border: none;
    background-color: #111;
    color: white;
    padding: 0 15px;
    cursor: pointer;
}
/* /Pages/Components/A_Hero.razor.rz.scp.css */
/* Altura del carrusel */
.carousel[b-ijo10rkn63] {
    height: 32rem;
    background-color:black;
}

.carousel-item[b-ijo10rkn63] {
    height: 32rem;
}

/* Imagen de fondo con filtro oscuro */
.overlay-image[b-ijo10rkn63] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.carousel-caption[b-ijo10rkn63] {
    bottom: 6rem;
    z-index: 10;
}

.carousel-caption h1[b-ijo10rkn63] {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .carousel[b-ijo10rkn63],
    .carousel-item[b-ijo10rkn63] {
        height: 28rem;
    }

    .carousel-caption[b-ijo10rkn63] {
        bottom: 2rem;
        left: 5%;
        right: 5%;
    }

    .carousel-caption h1[b-ijo10rkn63] {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .carousel-caption p[b-ijo10rkn63] {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .carousel-caption .btn[b-ijo10rkn63] {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .overlay-image[b-ijo10rkn63] {
        opacity: 0.6;
    }
}

/* /Pages/Components/B_Cards.razor.rz.scp.css */
.pricing-container[b-q62k5hk96o] {
    background-color: transparent;
    padding-top: 50px;
    min-height: 100vh;
}

.pricing-header[b-q62k5hk96o] {
    max-width: 700px;
}

/* Tarjetas de servicios */
.pricing-container .card[b-q62k5hk96o] {
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-container .card:hover[b-q62k5hk96o] {
    transform: translateY(-10px);
    box-shadow: 0 0 0 1px rgba(37, 140, 251, 0.5), 0 10px 30px rgba(37, 140, 251, 0.22);
}

.pricing-container .card:focus-within[b-q62k5hk96o],
.pricing-container .card:active[b-q62k5hk96o] {
    box-shadow: 0 0 0 1px rgba(37, 140, 251, 0.5), 0 10px 30px rgba(37, 140, 251, 0.22);
}

.pricing-container .card[b-q62k5hk96o]::after {
    content: "";
    position: absolute;
    top: -140%;
    left: -50%;
    width: 45%;
    height: 320%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.12) 45%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.12) 55%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(20deg) translateX(-220%);
    transition: transform 0.75s ease;
    pointer-events: none;
    z-index: 3;
}

.pricing-container .card:hover[b-q62k5hk96o]::after {
    transform: rotate(20deg) translateX(460%);
}

.pricing-container .card.border-primary[b-q62k5hk96o] {
    border-color: #258cfb !important;
}

.pricing-container .text-bg-primary[b-q62k5hk96o] {
    background-color: #258cfb !important;
}

.pricing-container .border-primary[b-q62k5hk96o] {
    border-color: #258cfb !important;
}

.pricing-container .list-unstyled li[b-q62k5hk96o] {
    position: relative;
    margin-bottom: 10px;
    font-size: 0.98rem;
    color: #d5dbe3;
    font-family: "Poppins", "Segoe UI", sans-serif;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-container .list-unstyled li[b-q62k5hk96o]::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(186, 226, 255, 0.95) 0%, rgba(37, 140, 251, 0.72) 62%, rgba(37, 140, 251, 0.2) 100%);
    box-shadow: 0 0 12px rgba(37, 140, 251, 0.55), 0 0 2px rgba(186, 226, 255, 0.9);
    flex: 0 0 auto;
}

.pricing-container .list-unstyled li i[b-q62k5hk96o] {
    display: none;
}

.pricing-container .card-header[b-q62k5hk96o] {
    background: radial-gradient(
        circle at 8% 10%,
        rgba(138, 154, 178, 0.55) 0%,
        rgba(74, 84, 99, 0.35) 28%,
        rgba(23, 27, 34, 0.92) 66%,
        rgba(10, 12, 15, 0.98) 100%
    ) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-container .card-body[b-q62k5hk96o] {
    background-color: transparent !important;
    text-align: left;
}

.pricing-container .card-body .pricing-card-title[b-q62k5hk96o] {
    text-align: center;
}

.pricing-container .card-body .btn-primary[b-q62k5hk96o] {
    border-color: rgba(37, 140, 251, 0.9);
    box-shadow: 0 0 0 1px rgba(37, 140, 251, 0.38), 0 0 18px rgba(37, 140, 251, 0.3);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.pricing-container .card-body .btn-primary:hover[b-q62k5hk96o],
.pricing-container .card-body .btn-primary:focus-visible[b-q62k5hk96o] {
    box-shadow: 0 0 0 1px rgba(37, 140, 251, 0.56), 0 0 24px rgba(37, 140, 251, 0.44);
    transform: translateY(-1px);
    color: #22c55e !important;
}
/* /Pages/Components/C_Preguntas.razor.rz.scp.css */
.faq-section[b-tsp6meqqj5] {
    padding: 4.5rem 0 5.5rem;
}

.faq-shell[b-tsp6meqqj5] {
    max-width: 980px;
}

.faq-header[b-tsp6meqqj5] {
    margin: 0 auto 2rem;
    max-width: 760px;
}

.faq-kicker[b-tsp6meqqj5] {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(37, 140, 251, 0.45);
    background: rgba(37, 140, 251, 0.12);
    color: #cde8ff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.faq-subtitle[b-tsp6meqqj5] {
    font-size: 1.02rem;
}

.faq-accordion[b-tsp6meqqj5] {
    --bs-accordion-color: #d7deea;
    --bs-accordion-bg: transparent;
    --bs-accordion-border-width: 0;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-active-color: #f2f8ff;
    --bs-accordion-active-bg: transparent;
}

.faq-item[b-tsp6meqqj5] {
    border: 1px solid rgba(126, 143, 169, 0.35);
    border-radius: 0.95rem;
    overflow: hidden;
    margin-bottom: 0.85rem;
    background: linear-gradient(145deg, rgba(24, 31, 42, 0.9), rgba(13, 17, 24, 0.82));
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item:hover[b-tsp6meqqj5],
.faq-item:focus-within[b-tsp6meqqj5] {
    border-color: rgba(37, 140, 251, 0.65);
    box-shadow: 0 0 0 1px rgba(37, 140, 251, 0.35), 0 14px 28px rgba(6, 10, 18, 0.5);
    transform: translateY(-2px);
}

.faq-item .accordion-button[b-tsp6meqqj5] {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #f8fbff;
    padding: 1.15rem 1.25rem;
    background: transparent;
}

.faq-item .accordion-button:not(.collapsed)[b-tsp6meqqj5] {
    background: linear-gradient(90deg, rgba(37, 140, 251, 0.15), rgba(37, 140, 251, 0.03));
    color: #f2f8ff;
}

.faq-item .accordion-button[b-tsp6meqqj5]::after {
    filter: brightness(1.15);
}

.faq-index[b-tsp6meqqj5] {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: #d5e9ff;
    border: 1px solid rgba(37, 140, 251, 0.55);
    background: rgba(37, 140, 251, 0.2);
    flex: 0 0 auto;
}

.faq-item .accordion-body[b-tsp6meqqj5] {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #c8d1df;
    font-size: 0.98rem;
    line-height: 1.6;
    padding: 0.95rem 1.25rem 1.2rem;
}

@media (max-width: 768px) {
    .faq-section[b-tsp6meqqj5] {
        padding: 3.5rem 0 4rem;
    }

    .faq-item .accordion-button[b-tsp6meqqj5] {
        font-size: 0.98rem;
        padding: 1rem;
    }

    .faq-index[b-tsp6meqqj5] {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.75rem;
    }

    .faq-item .accordion-body[b-tsp6meqqj5] {
        padding: 0.9rem 1rem 1rem;
        font-size: 0.94rem;
    }
}
/* /Pages/Components/D_Tecnologia.razor.rz.scp.css */
.tech-section[b-sq8lhweinr] {
    padding: 4.5rem 0 5.5rem;
    overflow-x: hidden;
    overflow-x: clip;
}

.tech-shell[b-sq8lhweinr] {
    max-width: 1100px;
}

.tech-header[b-sq8lhweinr] {
    margin: 0 auto 2rem;
    max-width: 760px;
}

.tech-subtitle[b-sq8lhweinr] {
    font-size: 1.02rem;
}

.tech-reveal-col[b-sq8lhweinr] {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
    transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1), filter 0.72s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}

.tech-reveal-col.is-prepared[b-sq8lhweinr] {
    opacity: 0;
    filter: blur(2px);
}

.tech-reveal-col.is-prepared.from-left[b-sq8lhweinr] {
    transform: translateX(-64px);
}

.tech-reveal-col.is-prepared.from-right[b-sq8lhweinr] {
    transform: translateX(64px);
}

.tech-reveal-col.is-visible[b-sq8lhweinr] {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

.tech-card[b-sq8lhweinr] {
    border: 1px solid rgba(126, 143, 169, 0.3);
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(155deg, rgba(24, 31, 42, 0.92), rgba(13, 17, 24, 0.84));
    box-shadow: 0 18px 34px rgba(6, 10, 18, 0.32);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.tech-card:hover[b-sq8lhweinr],
.tech-card:focus-within[b-sq8lhweinr] {
    transform: translateY(-6px);
    border-color: rgba(37, 140, 251, 0.65);
    box-shadow: 0 0 0 1px rgba(37, 140, 251, 0.34), 0 24px 42px rgba(6, 10, 18, 0.46);
}

.tech-image-wrap[b-sq8lhweinr] {
    position: relative;
    aspect-ratio: 16 / 10;
    padding: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 14%, rgba(37, 140, 251, 0.24), transparent 45%),
        radial-gradient(circle at 92% 82%, rgba(64, 166, 255, 0.2), transparent 40%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-image-wrap img[b-sq8lhweinr] {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.tech-card-body[b-sq8lhweinr] {
    padding: 1rem 1.1rem 1.2rem;
}

.tech-card-title[b-sq8lhweinr] {
    color: #f3f8ff;
    font-weight: 600;
    letter-spacing: 0.01em;
}

@media (prefers-reduced-motion: reduce) {
    .tech-reveal-col[b-sq8lhweinr],
    .tech-reveal-col.is-prepared[b-sq8lhweinr],
    .tech-reveal-col.is-visible[b-sq8lhweinr],
    .tech-reveal-col.is-prepared.from-left[b-sq8lhweinr],
    .tech-reveal-col.is-prepared.from-right[b-sq8lhweinr] {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

@media (max-width: 768px) {
    .tech-section[b-sq8lhweinr] {
        padding: 3.5rem 0 4rem;
    }

    .tech-reveal-col.is-prepared.from-left[b-sq8lhweinr] {
        transform: translateX(-26px);
    }

    .tech-reveal-col.is-prepared.from-right[b-sq8lhweinr] {
        transform: translateX(26px);
    }

    .tech-card-body[b-sq8lhweinr] {
        padding: 0.9rem 1rem 1rem;
    }

    .tech-card-title[b-sq8lhweinr] {
        font-size: 1.03rem;
    }
}
/* /Pages/Components/E_Redes.razor.rz.scp.css */
.redes-section[b-49goupbizf] {
    width: 100%;
    padding: 4rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    overflow: hidden;
}

.redes-line[b-49goupbizf] {
    flex: 1;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.18),
        transparent
    );
}

.redes-container[b-49goupbizf] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.red-social[b-49goupbizf] {
    width: 70px;
    height: 70px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.08);

    transition: all .35s ease;
}

.red-social img[b-49goupbizf] {
    width: 32px;
    height: 32px;

    opacity: .75;

    transition: all .35s ease;
}

/* Hover del botón */
.red-social:hover[b-49goupbizf] {
    transform: translateY(-6px);

    background: rgba(255,255,255,0.12);

    border-color: rgba(255,255,255,0.4);

    box-shadow:
        0 0 15px rgba(255,255,255,.25),
        0 0 30px rgba(255,255,255,.20),
        0 0 60px rgba(255,255,255,.15);
}

/* Hover del icono */
.red-social:hover img[b-49goupbizf] {
    opacity: 1;

    transform: scale(1.15);

    filter:
        drop-shadow(0 0 8px rgba(255,255,255,.8))
        drop-shadow(0 0 16px rgba(255,255,255,.5));
}

@media (max-width: 768px) {

    .redes-section[b-49goupbizf] {
        gap: 1rem;
    }

    .redes-container[b-49goupbizf] {
        gap: 1rem;
    }

    .red-social[b-49goupbizf] {
        width: 60px;
        height: 60px;
    }

    .red-social img[b-49goupbizf] {
        width: 28px;
        height: 28px;
    }
}
/* /Pages/Components/F_Footer.razor.rz.scp.css */
/* ===================================================== */
/* FOOTER BASE                    */
/* ===================================================== */

.footer[b-penevj88xd] {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.2px 20px; /* Mantengo tu padding original */
    background-color: transparent;
    color: #ccc;
    overflow: hidden;
    text-align: center; 
}

.footer-container[b-penevj88xd] {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    font-size: 0.7rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center; 
}

/* ===================================================== */
/* EFECTO TORNASOLADO (SHIMMER)               */
/* ===================================================== */

.shimmer-text[b-penevj88xd] {
    font-weight: bold;
    /* Degradado sutil metálico */
    background: linear-gradient(
        90deg, 
        #fffefe 0%, 
        #bcb8b8 20%, 
        #161616 40%, 
        #888886 60%, 
        #f9fbfb 80%
    );
    background-size: 200% auto;
    
    /* Clipping para que el color solo esté en las letras */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Animación del brillo */
    animation: shine-b-penevj88xd 5s linear infinite;
    display: inline-block; /* Importante para que la animación fluya bien */
}

@keyframes shine-b-penevj88xd {
    to {
        background-position: 200% center;
    }
}

.bullet[b-penevj88xd] {
    margin: 0 5px;
    color: #444;
}

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

@media (min-width: 768px) {
    .footer-container[b-penevj88xd] {
        font-size: 0.7rem;
        max-width: 100%; /* En desktop podemos permitir que ocupe más espacio si es necesario */
    }
}
/* /Pages/Components/Pago_result.razor.rz.scp.css */
.result-container[b-na3jv4hjfx] {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f6f7fb;
}

.result-card[b-na3jv4hjfx] {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.icon[b-na3jv4hjfx] {
    font-size: 48px;
    margin-bottom: 12px;
}

.title[b-na3jv4hjfx] {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.message[b-na3jv4hjfx] {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.btn-home[b-na3jv4hjfx] {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    background: #2563eb;
}

.result-card.success .icon[b-na3jv4hjfx] { color: #22c55e; }
.result-card.failure .icon[b-na3jv4hjfx] { color: #ef4444; }
.result-card.pending .icon[b-na3jv4hjfx] { color: #f59e0b; }
.result-card.unknown .icon[b-na3jv4hjfx] { color: #6b7280; }
/* /Pages/Components/RecuperarPassword.razor.rz.scp.css */
.rp-container[b-o46f5tsb76] {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.rp-card[b-o46f5tsb76] {
    width: 100%;
    max-width: 520px;
    background: var(--bs-body-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.rp-title[b-o46f5tsb76] {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}

.form-label[b-o46f5tsb76] {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-control[b-o46f5tsb76] {
    min-height: 46px;
}

.btn[b-o46f5tsb76] {
    width: 100%;
    min-height: 46px;
    font-weight: 600;
}

.alert[b-o46f5tsb76] {
    margin-bottom: 20px;
}
/* /Pages/Components/Servicios.razor.rz.scp.css */
/* =====================================================
   CONTENEDOR PRINCIPAL
===================================================== */

.contenedor-principal[b-yi5vcaa3kc] {
    padding: 40px 0;
    background-color: transparent;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}


/* =====================================================
   FILA DE CATEGORÍA
===================================================== */

.fila-contenedor[b-yi5vcaa3kc] {
    margin-bottom: 60px;
}


/* =====================================================
   TÍTULO DE CATEGORÍA
===================================================== */

.titulo-categoria[b-yi5vcaa3kc] {
    color: #ffffff;
    margin-left: 50px;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-family: sans-serif;
    font-weight: bold;

    border-left: 4px solid #258cfb;
    padding-left: 15px;
}


/* =====================================================
   CONTENEDOR DEL CARRUSEL
===================================================== */

.carrusel-seccion[b-yi5vcaa3kc] {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}


/* =====================================================
   VISOR DEL CARRUSEL
===================================================== */

.visor-carrusel[b-yi5vcaa3kc] {

    display: flex;
    gap: 15px;

    overflow-x: auto;
    scroll-behavior: smooth;

    width: 100%;

    padding: 15px 50px 40px 50px;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;
}

/* Ocultar scrollbar Chrome */
.visor-carrusel[b-yi5vcaa3kc]::-webkit-scrollbar {
    display: none;
}


/* =====================================================
   TARJETAS DE DISEÑO
===================================================== */

.tarjeta-diseno[b-yi5vcaa3kc] {

    min-width: calc(25% - 12px);
    height: 180px;

    background: #1e1e1e;

    border-radius: 8px;
    overflow: hidden;

    position: relative;

    border: 1px solid #333;

    transition: all 0.3s ease;

    flex-shrink: 0;

    scroll-snap-align: start;

    cursor: pointer;

    -webkit-box-reflect: below 2px linear-gradient(
        transparent,
        transparent,
        rgba(0,0,0,0.1)
    );
}


/* Hover tarjeta */

.tarjeta-diseno:hover[b-yi5vcaa3kc] {

    transform: scale(1.05);

    border-color: #258cfb;

    z-index: 10;
}


/* Imagen dentro de tarjeta */

.tarjeta-diseno img[b-yi5vcaa3kc] {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


/* =====================================================
   INFORMACIÓN SOBRE LA TARJETA
===================================================== */

.tarjeta-info[b-yi5vcaa3kc] {

    position: absolute;

    bottom: 0;

    width: 100%;

    background: linear-gradient(
        transparent,
        rgba(0,0,0,0.9)
    );

    padding: 10px;

    color: white;

    font-size: 0.9rem;

}


/* =====================================================
   BOTONES DEL CARRUSEL
===================================================== */

.btn-control[b-yi5vcaa3kc] {

    position: absolute;

    z-index: 20;

    color: white;

    border: none;

    font-size: 3rem;

    height: 180px;

    width: 60px;

    cursor: pointer;

    transition: all 0.3s ease;

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    top: 15px;
}


/* Flecha izquierda */

.prev[b-yi5vcaa3kc] {

    left: 0;

    background: linear-gradient(
        to right,
        rgba(18,18,18,0.9) 0%,
        transparent 100%
    );

}


/* Flecha derecha */

.next[b-yi5vcaa3kc] {

    right: 0;

    background: linear-gradient(
        to left,
        rgba(18,18,18,0.9) 0%,
        transparent 100%
    );

}


/* Mostrar flechas al pasar el mouse */

.carrusel-seccion:hover .btn-control[b-yi5vcaa3kc] {

    opacity: 1;

}


.btn-control:hover[b-yi5vcaa3kc] {

    color: #258cfb;

}


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

@media (max-width: 768px) {

    .titulo-categoria[b-yi5vcaa3kc] {
        margin-left: 20px;
        font-size: 1.3rem;
    }

    .visor-carrusel[b-yi5vcaa3kc] {
        padding: 15px 40px;
    }

    .tarjeta-diseno[b-yi5vcaa3kc] {

        min-width: 85%;

        -webkit-box-reflect: none;
    }

    .btn-control[b-yi5vcaa3kc] {

        opacity: 1;

        width: 40px;

        font-size: 2rem;
    }
}


/* =====================================================
   VIDEO MODAL
===================================================== */

.video-modal[b-yi5vcaa3kc] {

    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.85);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;

    animation: fadeIn-b-yi5vcaa3kc 0.2s ease;
}


/* =====================================================
   CONTENEDOR VIDEO
===================================================== */

.video-contenedor[b-yi5vcaa3kc] {

    position: relative;
}

.video-contenedor video[b-yi5vcaa3kc] {

    width: 80vw;
    max-width: 900px;

    border-radius: 12px;

    box-shadow: 0 0 30px rgba(0,0,0,0.6);
}


/* =====================================================
   IMAGEN MODAL
===================================================== */

.imagen-contenedor[b-yi5vcaa3kc] {

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;
}

.imagen-expandida[b-yi5vcaa3kc] {

    width: auto;
    height: auto;

    max-width: 90vw;
    max-height: 90vh;

    border-radius: 12px;

    box-shadow: 0 0 30px rgba(0,0,0,0.6);

    animation: zoomIn-b-yi5vcaa3kc 0.2s ease;
}


/* =====================================================
   BOTÓN CERRAR MODAL
===================================================== */

.btn-cerrar-modal[b-yi5vcaa3kc] {

    position: absolute;

    top: 20px;
    right: 20px;

    width: 45px;
    height: 45px;

    border: none;

    border-radius: 50%;

    background: rgba(0,0,0,0.7);

    color: white;

    font-size: 1.5rem;

    cursor: pointer;

    z-index: 10000;

    transition: all 0.2s ease;
}

.btn-cerrar-modal:hover[b-yi5vcaa3kc] {

    background: #258cfb;

    transform: scale(1.1);
}


/* =====================================================
   PLAY ICON VIDEO
===================================================== */

.tarjeta-diseno.video[b-yi5vcaa3kc]::after {

    content: "▶";

    position: absolute;

    font-size: 40px;

    color: white;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}


/* =====================================================
   ANIMACIONES
===================================================== */

@keyframes zoomIn-b-yi5vcaa3kc {

    from {

        transform: scale(0.9);
        opacity: 0;
    }

    to {

        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn-b-yi5vcaa3kc {

    from {

        opacity: 0;
    }

    to {

        opacity: 1;
    }
}
/* /Pages/PagosMenu.razor.rz.scp.css */
.checkout-container[b-yhn5hpiu2j] {

    min-height: 100vh;
    padding: 70px 25px;
    color: white;
}

/* HEADER */

.checkout-header[b-yhn5hpiu2j] {

    text-align: center;
    margin-bottom: 40px;
}

.checkout-header h1[b-yhn5hpiu2j] {

    font-size: 2.7rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.checkout-header p[b-yhn5hpiu2j] {

    color: #cfcfcf;
    font-size: 1.1rem;
}

/* 🔴 BANNER */

.alerta-email[b-yhn5hpiu2j] {

    max-width: 1100px;
    margin: 0 auto 30px auto;

    background: #2a0f0f;
    border: 1px solid #ff4d4d;
    color: #ffb3b3;

    padding: 14px 18px;
    border-radius: 12px;

    text-align: center;
    font-weight: 500;

    animation: fadeIn-b-yhn5hpiu2j 0.2s ease-in-out;
}

@keyframes fadeIn-b-yhn5hpiu2j {

    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* GRID */

.metodos-grid[b-yhn5hpiu2j] {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */

.metodo-card[b-yhn5hpiu2j] {

    position: relative;
    background: linear-gradient(145deg, #1c1c1c, #141414);
    border: 1px solid #2c2c2c;
    border-radius: 22px;
    padding: 40px 30px;

    transition: all 0.3s ease;
}

.metodo-card:hover[b-yhn5hpiu2j] {

    transform: translateY(-8px);
    border-color: #258cfb;
}

/* BADGE */

.metodo-badge[b-yhn5hpiu2j] {

    position: absolute;
    top: 18px;
    right: 18px;

    background: #258cfb;
    color: white;

    padding: 6px 12px;
    border-radius: 30px;

    font-size: 0.8rem;
    font-weight: bold;
}

/* ICONO */

.metodo-icono[b-yhn5hpiu2j] {

    font-size: 4rem;
    margin-bottom: 25px;
}

/* TEXTO */

.metodo-card h2[b-yhn5hpiu2j] {

    font-size: 1.8rem;
    margin-bottom: 18px;
}

.metodo-card p[b-yhn5hpiu2j] {

    color: #cfcfcf;
    margin-bottom: 30px;
    min-height: 60px;
}

/* BOTONES */

.btn-metodo[b-yhn5hpiu2j] {

    width: 100%;
    border: none;

    padding: 15px;
    border-radius: 14px;

    background: #258cfb;
    color: white;

    font-weight: bold;
    cursor: pointer;

    transition: 0.2s;
}

.btn-metodo:hover[b-yhn5hpiu2j] {

    background: #1f76d4;
    transform: scale(1.02);
}

.btn-metodo.secundario[b-yhn5hpiu2j] {

    background: #2d2d2d;
}

.btn-metodo.secundario:hover[b-yhn5hpiu2j] {

    background: #3a3a3a;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .checkout-container[b-yhn5hpiu2j] {
        padding: 50px 20px;
    }

    .checkout-header h1[b-yhn5hpiu2j] {
        font-size: 2rem;
    }
}

/* CRYPTO */

.wallet-box[b-yhn5hpiu2j] {
    margin-top: 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.wallet-box h3[b-yhn5hpiu2j] {
    margin-bottom: 1rem;
    color: white;
}

.wallet-item[b-yhn5hpiu2j] {
    margin-bottom: 1rem;
}

.wallet-item strong[b-yhn5hpiu2j] {
    display: block;
    margin-bottom: .3rem;
    color: #00ffae;
}

.wallet-item p[b-yhn5hpiu2j] {
    margin: 0;
    padding: .8rem;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    color: white;
    word-break: break-all;
    font-size: .9rem;
}

/* CRYPTO - BOTON COPIAR */
.wallet-line[b-yhn5hpiu2j] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-copiar[b-yhn5hpiu2j] {
    border: none;
    padding: .6rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}
