/* /Components/ProductCard.razor.rz.scp.css */
.producto-container[b-d1cw51vo1a] {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 20px;
}

.galeria[b-d1cw51vo1a] {
    flex: 1;
    max-width: 400px;
}

.img-principal[b-d1cw51vo1a] {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.miniaturas img[b-d1cw51vo1a] {
    width: 80px;
    margin-top: 10px;
    margin-right: 10px;
    cursor: pointer;
    border: 2px solid #ccc;
    border-radius: 5px;
}

.detalle[b-d1cw51vo1a] {
    flex: 2;
}

.descripcion[b-d1cw51vo1a] {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
}

.caracteristicas li[b-d1cw51vo1a] {
    margin-bottom: 8px;
    font-weight: 500;
}

.btn-descargar[b-d1cw51vo1a], .btn-carrito[b-d1cw51vo1a], .btn-comprar[b-d1cw51vo1a] {
    display: inline-block;
    margin: 10px 5px 0 0;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.btn-descargar[b-d1cw51vo1a] {
    background-color: #333;
    color: white;
}

.btn-carrito[b-d1cw51vo1a] {
    background-color: #007bff;
    color: white;
}

.btn-comprar[b-d1cw51vo1a] {
    background-color: #28a745;
    color: white;
}
/* /Components/TopBar.razor.rz.scp.css */
h1[b-uqc63ztstq] {
    color:white;
    background-color:red;
}

.btn[b-uqc63ztstq] {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #4caf50; /* Borde verde inicial */
    border-radius: 50px;
    background-color: #81c784; /* Fondo verde claro */
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    outline: none;
}

.btn:hover[b-uqc63ztstq] {
    background-color: #66bb6a; /* Cambio de fondo a verde más oscuro */
    color: #fff;
    border-color: #388e3c; /* Borde verde más oscuro */
    transform: scale(1.05); /* Efecto de ampliación suave */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

/* Efecto de deslizamiento del borde */
.btn[b-uqc63ztstq]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #388e3c; /* Verde más oscuro */
    transition: all 0.3s ease; /* Transición más suave */
    transform: scaleX(0); /* Inicialmente no se ve */
    transform-origin: bottom right;
    z-index: -1; /* Para que el contenido del botón esté encima */
}

.btn:hover[b-uqc63ztstq]::before {
    transform: scaleX(1); /* Al pasar el mouse, se expande */
    transform-origin: bottom left;
}

.btn:active[b-uqc63ztstq] {
    transform: scale(0.95) translateY(2px); /* Efecto de compresión y bajada */
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.btn:focus[b-uqc63ztstq] {
    outline: none;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
}
/* /Components/VideoCard.razor.rz.scp.css */
.video-card[b-x4irdgdsst] {
    max-width: 720px;
    margin: 20px auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}

.video-frame[b-x4irdgdsst] {
    width: 100%;
    height: auto;
    display: block;
}

.video-info[b-x4irdgdsst] {
    padding: 16px;
}

.video-info h3[b-x4irdgdsst] {
    margin: 0;
    font-size: 1.25rem;
    color: #111;
}

.video-info p[b-x4irdgdsst] {
    color: #555;
    margin-top: 8px;
    font-size: 1rem;
}
/* /Layout/MainLayout.razor.rz.scp.css */
html[b-et6uta8wia], body[b-et6uta8wia] {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.page[b-et6uta8wia] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.nav-bar[b-et6uta8wia] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5rem;
    background-color: #0f172a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    padding: 0 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

main[b-et6uta8wia] {
    flex: 1;
    overflow-y: auto;
    height: calc(100vh - 3.5rem);
    margin: 0;
    padding: 0;
}
/* /Layout/NavMenu.razor.rz.scp.css */
.header[b-zj689m1yrr] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    background: linear-gradient(90deg, #0f172a, #133c74, #1c4e9b, #1b6bc1);
    color: white;
    z-index: 1000;
    font-family: 'Orbitron', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 255, 255, 0.2);
}

.logo-section[b-zj689m1yrr] {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo[b-zj689m1yrr] {
    height: 35px;
}

.brand-name[b-zj689m1yrr] {
    font-size: 1.6rem;
    font-weight: inherit;
    text-shadow: 0 0 1px #00f7ff;
}

.nav-links[b-zj689m1yrr] {
    display: flex;
    gap: 2rem;
}

.nav-links a[b-zj689m1yrr] {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover[b-zj689m1yrr] {
    color: #00ffaa;
}

.social-icons[b-zj689m1yrr] {
    display: flex;
    gap: 1rem;
}

.social-icons a[b-zj689m1yrr] {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover[b-zj689m1yrr] {
    transform: scale(1.2);
    color: #00ffaa;
}
/* /Pages/Home.razor.rz.scp.css */
*[b-ee0mvxf0np] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body[b-ee0mvxf0np] {
    background: #020c1b;
    color: #e0f7fa;
    line-height: 1.6;
}

.section[b-ee0mvxf0np] {
    padding: 8rem 1rem;
    text-align: center;
    background: #0b1529;
}

.section h2[b-ee0mvxf0np] {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #00bcd4;
}

.intro[b-ee0mvxf0np] {
    max-width: 800px;
    margin: 0 auto;
    color: #cfeeff;
    font-size: 1.1rem;
}

.services[b-ee0mvxf0np] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.card[b-ee0mvxf0np] {
    background: #0d1f33;
    padding: 2rem;
    border-radius: 15px;
    width: 280px;
    box-shadow: 0 0 15px rgba(0,255,255,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
    text-align: center;
}

.card:hover[b-ee0mvxf0np] {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0,255,255,0.35);
}

.card h3[b-ee0mvxf0np] {
    margin-bottom: 1rem;
}

.icon[b-ee0mvxf0np] {
    width: 60px;
    margin-bottom: 1rem;
}

.contact[b-ee0mvxf0np] {
    background: #091829;
    color: #ccf2ff;
}

.contact a.email[b-ee0mvxf0np] {
    color: #29b6f6;
    font-weight: 500;
}

.contact a.whatsapp[b-ee0mvxf0np] {
    color: #25d366;
    font-weight: 500;
}

.footer[b-ee0mvxf0np] {
    background: #000c1a;
    color: #88cfdc;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}

a[b-ee0mvxf0np] {
    text-decoration: none;
}

    a:hover[b-ee0mvxf0np] {
        opacity: 0.8;
    }

@media (max-width: 768px) {
    .hero h1[b-ee0mvxf0np] {
        font-size: 2rem;
    }

    .card[b-ee0mvxf0np] {
        width: 90%;
    }

    .services[b-ee0mvxf0np] {
        flex-direction: column;
        align-items: center;
    }
}
/* /Pages/ServicesPage.razor.rz.scp.css */
.titulo[b-usgj6h2417] {
    text-align: center;
    font-size: 2.5rem;
    margin: 30px 0;
}

.servicio[b-usgj6h2417] {
    background: #f7f7f7;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.servicio h2[b-usgj6h2417] {
    color: #0078d4;
    margin-bottom: 10px;
}

.servicio p[b-usgj6h2417] {
    font-size: 1.1rem;
    color: #333;
}
