/* VCON Products Grid Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&family=Roboto:wght@300;400;500;700&display=swap');
.vcon-products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Roboto', sans-serif;
}

.vcon-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.vcon-product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.4s ease;
    position: relative;
}

.vcon-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #252aa5, #4056e0, #252aa5);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.vcon-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 42, 165, 0.15);
    border-color: #252aa5;
}

.vcon-product-card:hover::before {
    transform: scaleX(1);
}

.vcon-product-image-container {
    height: 280px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
@media (max-width: 768px) {
    .vcon-product-image-container {
        height: auto;
        min-height: 200px;
    }
}
.vcon-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.vcon-product-card:hover .vcon-product-image {
    transform: scale(1.05);
}

.vcon-product-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vcon-product-card:hover .vcon-product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.vcon-overlay-icon {
    width: 24px;
    height: 24px;
    color: #252aa5;
}

.vcon-product-content {
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.vcon-product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
}

.vcon-product-description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.vcon-product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.vcon-feature-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.vcon-product-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vcon-learn-more-btn {
    background: #252aa5;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.vcon-learn-more-btn:hover {
    background: #1d2085;
    transform: translateX(5px);
    gap: 1rem;
    color: white;
    text-decoration: none;
}

.vcon-product-category {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .vcon-products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .vcon-products-container {
        padding: 1rem;
    }

    .vcon-product-content {
        padding: 2rem;
    }
}

/* Animation Classes */
.vcon-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.vcon-fade-up.vcon-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Default SVG styles for products without images */
.vcon-product-svg {
    width: 100%;
    height: 100%;
}

/* Todos los productos usan el mismo color azul */

/* Default background gradients for SVGs */
.vcon-bg-blue {
    background: linear-gradient(135deg, #e6f7ff 0%, #b3e5ff 100%);
}

.vcon-bg-yellow {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.vcon-bg-green {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.vcon-bg-red {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
}