.categorias-section {
            padding: 40px 0;
            background: #f8f9fa;
        }
        
        .categorias-title {
            text-align: center;
            color: #0056b3;
            margin-bottom: 30px;
            font-weight: bold;
        }
        
        .categorias-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 0 auto;
            max-width: 1200px;
            padding: 0 20px;
        }
        
        .categoria-card {
            background: white;
            border: 2px solid #0056b3;
            border-radius: 12px;
            padding: 20px;
            width: 180px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.15);
            text-decoration: none;
            color: inherit;
        }
        
        .categoria-card:hover {
            background: #ff6600;
            color: white;
            transform: scale(1.05);
            box-shadow: 0 3px 8px rgba(0,0,0,0.2);
            text-decoration: none;
        }
        
        .categoria-logo {
            width: 100px;
            height: 100px;
            object-fit: contain;
            margin-bottom: 15px;
        }
        
        .categoria-nombre {
            font-weight: bold;
            font-size: 16px;
            margin: 0;
        }